Skip to content

Commit

Permalink
Release 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthanoptimal committed Feb 24, 2024
1 parent 6724f12 commit c13959f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ BoofCV is on [Maven Central](http://search.maven.org/) and can be easily added t
For Gradle projects:
```
dependencies {
api(group: 'org.boofcv', name: 'boofcv-core', version: '1.1.2')
api(group: 'org.boofcv', name: 'boofcv-core', version: '1.1.3')
}
```

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ allprojects {
apply plugin: 'com.peterabeles.gversion'

group = 'org.boofcv'
version = '1.1.3-SNAPSHOT'
version = '1.1.3'

createVersionFile.enabled = false // run only once. enabled in types
}
Expand Down Expand Up @@ -131,8 +131,8 @@ subprojects {
}

dependencies {
api(group: 'org.georegression', name: 'georegression', version: '0.27.0-SNAPSHOT') { exclude group: 'org.ddogleg' }
api(group: 'org.ddogleg', name: 'ddogleg', version: '0.23.2-SNAPSHOT')
api(group: 'org.georegression', name: 'georegression', version: '0.27.0') { exclude group: 'org.ddogleg' }
api(group: 'org.ddogleg', name: 'ddogleg', version: '0.23.2')

api group: 'net.sf.trove4j', name: 'trove4j', version: project.trove4j_version

Expand Down
2 changes: 1 addition & 1 deletion change.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Version Meaning: <compatible>.<feature>.<bug fix>
- Last digit always indicates a bug fix and other minor changes

---------------------------------------------
Date : 2024/Feb/
Date : 2024/Feb/24
Version : 1.1.3

- CalibrateStereoPlanar provides valid results once again
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ configurations {

dependencies {
['boofcv-android', 'boofcv-core'].each {
String a -> implementation group: 'org.boofcv', name: a, version: '1.1.2'
String a -> implementation group: 'org.boofcv', name: a, version: '1.1.3'
}

def fragment_version = "2.5.3"
Expand Down
2 changes: 1 addition & 1 deletion integration/boofcv-android/examples/video/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ configurations {

dependencies {
['boofcv-android', 'boofcv-core'].each {
String a -> api group: 'org.boofcv', name: a, version: '1.1.2' }
String a -> api group: 'org.boofcv', name: a, version: '1.1.3' }

annotationProcessor 'org.projectlombok:lombok:1.18.16'

Expand Down

0 comments on commit c13959f

Please sign in to comment.