Skip to content

Commit

Permalink
Release 1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthanoptimal committed Oct 5, 2024
1 parent e834b1f commit 71b3595
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 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.6')
api(group: 'org.boofcv', name: 'boofcv-core', version: '1.1.7')
}
```

Expand Down
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ ext.libpath = file('./').absolutePath

allprojects {
apply plugin: 'com.peterabeles.gversion'
apply plugin: 'com.peterabeles.gversion'

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

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

dependencies {
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: 'org.georegression', name: 'georegression', version: '0.27.3') { exclude group: 'org.ddogleg' }
api(group: 'org.ddogleg', name: 'ddogleg', version: '0.23.4')

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

Expand Down
6 changes: 6 additions & 0 deletions change.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ Version Meaning: <compatible>.<feature>.<bug fix>
- Second digit indicates if a new feature was added and/or if only a minor refactoring has been done
- Last digit always indicates a bug fix and other minor changes

---------------------
Date : 2024/Oct/05
Version : 1.1.7

- Fixed backwards compatibility issue in MultiViewIO cause by last release

---------------------
Date : 2024/Sep/06
Version : 1.1.6
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.6'
String a -> implementation group: 'org.boofcv', name: a, version: '1.1.7'
}

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

annotationProcessor 'org.projectlombok:lombok:1.18.16'

Expand Down
4 changes: 2 additions & 2 deletions misc/release_check_list.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

VERSION=v0.XX
git clone --depth 1 -b $VERSION --single-branch --recursive git@github.com:lessthanoptimal/BoofCV.git boofcv
cd boofcv && ./gradlew autogenerate && rm -rf .git && cd ..;zip -r boofcv-$VERSION-src.zip boofcv
cd boofcv && ./gradlew autogenerate && rm -rf .git && cd .. && zip -r boofcv-$VERSION-src.zip boofcv
cd boofcv && ./gradlew createLibraryDirectory && mv boofcv-*-libs .. && cd .. && zip -r boofcv-$VERSION-libs.zip boofcv-$VERSION-libs
cd boofcv && rm -rf docs/api-web && ./gradlew alljavadocWeb && zip -r api.zip docs/api-web

Expand Down Expand Up @@ -47,4 +47,4 @@ Update prebuilt applications and demonstrations using https://github.com/lesstha

git clean -fd main && ./gradlew autogenerate && ./gradlew assemble && ./gradlew publish -Dorg.gradle.parallel=false

log onto http://oss.sonatype.org
log onto https://oss.sonatype.org

0 comments on commit 71b3595

Please sign in to comment.