Skip to content

Commit

Permalink
Release 0.27.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthanoptimal committed Oct 5, 2024
1 parent f199a5d commit 2f51f2c
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ GeoRegression is on [Maven Central](https://mvnrepository.com/artifact/org.geore
be added to your Gradle project as follows:

```Groovy
compile group: 'org.georegression', name: 'georegression', version: '0.27.2'
api "org.georegression:georegression:0.27.3"
```

## Build Instructions
Expand Down
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ allprojects {
apply plugin: 'com.peterabeles.gversion'

group = 'org.georegression'
version = '0.27.3-SNAPSHOT'
version = '0.27.3'
}

project.ext.ddogleg_version = '0.23.4'
project.ext.errorprone_version = '2.11.0'
project.ext.nullaway_version = '0.9.5'
project.ext.lombok_version = '1.18.24'
Expand Down Expand Up @@ -86,7 +87,7 @@ subprojects {
}

dependencies {
implementation (group: 'org.ddogleg', name: 'ddogleg', version: '0.23.3')
implementation "org.ddogleg:ddogleg:$project.ddogleg_version"

compileOnly "org.jetbrains:annotations:$project.jetnull_version" // @Nullable
compileOnly "javax.annotation:jsr250-api:$project.jsr250_version" // @Generated
Expand Down
6 changes: 6 additions & 0 deletions change.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
YEAR-MONTH-DAY

---------------------------------------------
Date : 2024-Oct-05
Version : 0.27.3

- Updated DDogleg version

---------------------------------------------
Date : 2024-Sep-06
Version : 0.27.2
Expand Down
8 changes: 4 additions & 4 deletions docs/release_checklist.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- Make sure autogenerated code is clean
git clean -df main/src;./gradlew autogenerate
git clean -df main/src && ./gradlew autogenerate
- Make sure all unit tests pass
./gradlew test
- Update change.txt
Expand All @@ -16,10 +16,10 @@
- Create zip and jar files
VERSION=v0.22;PRJNAME=georegression-$VERSION
git clone -b SNAPSHOT [email protected]:lessthanoptimal/GeoRegression.git $PRJNAME
cd $PRJNAME&&./gradlew autogenerate&&./gradlew :georegression:createVersionFile&&rm -rf .git&&cd ..&&zip -r $PRJNAME-src.zip $PRJNAME
cd $PRJNAME&&./gradlew createLibraryDirectory&&mv libraries ../$PRJNAME-libs&&cd ..&&zip -r $PRJNAME-libs.zip $PRJNAME-libs
cd $PRJNAME && ./gradlew autogenerate && ./gradlew :georegression:createVersionFile && rm -rf .git && cd .. && zip -r $PRJNAME-src.zip $PRJNAME
cd $PRJNAME && ./gradlew createLibraryDirectory && mv libraries ../$PRJNAME-libs && cd .. && zip -r $PRJNAME-libs.zip $PRJNAME-libs
- Update JavaDoc
rm -rf build/doc/javadoc;./gradlew javadocWeb;zip -r api.zip build/docs/api-web
rm -rf build/doc/javadoc && ./gradlew javadocWeb && zip -r api.zip build/docs/api-web

-----
Uploading Releases to Maven Central
Expand Down
4 changes: 2 additions & 2 deletions docs/website/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
# built documents.
#
# The short X.Y version.
version = '0.27.2'
version = '0.27.3'
# The full version, including alpha/beta/rc tags.
release = '0.27.2'
release = '0.27.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/website/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Geometric Regression Library (GeoRegression) is an open source Java geometry lib

=================== =====================
**Latest Version** v\ |geo_version|
**Released** September 6, 2024
**Released** October 5, 2024
**Source Code** `GitHub <https://github.com/lessthanoptimal/GeoRegression>`_
**License** `Apache 2.0 <http://www.apache.org/licenses/LICENSE-2.0>`_
=================== =====================
Expand Down

0 comments on commit 2f51f2c

Please sign in to comment.