Skip to content

Commit

Permalink
Release 0.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthanoptimal committed Feb 24, 2024
1 parent ae2c077 commit 6c91c34
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 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.26.3'
compile group: 'org.georegression', name: 'georegression', version: '0.27.0'
```

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

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

project.ext.errorprone_version = '2.11.0'
Expand Down Expand Up @@ -86,7 +86,7 @@ subprojects {
}

dependencies {
implementation (group: 'org.ddogleg', name: 'ddogleg', version: '0.23.2-SNAPSHOT')
implementation (group: 'org.ddogleg', name: 'ddogleg', version: '0.23.2')

compileOnly "org.jetbrains:annotations:$project.jetnull_version" // @Nullable
compileOnly "javax.annotation:jsr250-api:$project.jsr250_version" // @Generated
Expand Down
2 changes: 1 addition & 1 deletion change.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
YEAR-MONTH-DAY

---------------------------------------------
Date : 2023-??
Date : 2024-Feb-24
Version : 0.27.0

- Added RobustFittingOps to make robust fitting of shapes easier.
Expand Down
2 changes: 1 addition & 1 deletion docs/release_checklist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
- 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 createVersionFile&&rm -rf .git&&cd ..&&zip -r $PRJNAME-src.zip $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
- Update JavaDoc
rm -rf build/doc/javadoc;./gradlew javadocWeb;zip -r api.zip build/docs/api-web
Expand Down
6 changes: 3 additions & 3 deletions docs/website/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,17 @@

# General information about the project.
project = u'GeoRegression'
copyright = u'2023, Peter Abeles'
copyright = u'2024, Peter Abeles'
author = u'Peter Abeles'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.26.3'
version = '0.27.0'
# The full version, including alpha/beta/rc tags.
release = '0.26.3'
release = '0.27.0'

# 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** November 5, 2023
**Released** February 24, 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 6c91c34

Please sign in to comment.