Skip to content

Commit

Permalink
Release 1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthanoptimal committed Sep 6, 2024
1 parent dcf03b6 commit cbb1030
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.5')
api(group: 'org.boofcv', name: 'boofcv-core', version: '1.1.6')
}
```

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.6-SNAPSHOT'
version = '1.1.6'

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.1') { exclude group: 'org.ddogleg' }
api(group: 'org.ddogleg', name: 'ddogleg', version: '0.23.2')
api(group: 'org.georegression', name: 'georegression', version: '0.27.2') { exclude group: 'org.ddogleg' }
api(group: 'org.ddogleg', name: 'ddogleg', version: '0.23.3')

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/XXX/XX
Date : 2024/Sep/06
Version : 1.1.6

- Homogenous -> Homogeneous (Wide spread spelling error)
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.5'
String a -> implementation group: 'org.boofcv', name: a, version: '1.1.6'
}

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.5' }
String a -> api group: 'org.boofcv', name: a, version: '1.1.6' }

annotationProcessor 'org.projectlombok:lombok:1.18.16'

Expand Down

0 comments on commit cbb1030

Please sign in to comment.