Skip to content

Commit

Permalink
Release 1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthanoptimal committed Mar 7, 2025
1 parent 4824566 commit 09ab5e4
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.7')
api(group: 'org.boofcv', name: 'boofcv-core', version: '1.1.8')
}
```

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

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

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

dependencies {
api("org.georegression:georegression:0.27.3") { exclude group: 'org.ddogleg' }
api("org.ddogleg:ddogleg:0.23.5-SNAPSHOT")
api("org.georegression:georegression:0.27.4") { exclude group: 'org.ddogleg' }
api("org.ddogleg:ddogleg:0.23.5")

api("net.sf.trove4j:trove4j:${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 : 202X/XXX/XX
Date : 2025/Mar/06
Version : 1.1.8

- PackedArray
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.7'
String a -> implementation group: 'org.boofcv', name: a, version: '1.1.8'
}

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

annotationProcessor 'org.projectlombok:lombok:1.18.16'

Expand Down

0 comments on commit 09ab5e4

Please sign in to comment.