Skip to content

Commit

Permalink
Release 0.26.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthanoptimal committed Nov 5, 2023
1 parent 4aca949 commit f56a7c9
Show file tree
Hide file tree
Showing 6 changed files with 10 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.26.1'
compile group: 'org.georegression', name: 'georegression', version: '0.26.3'
```

## Build Instructions
Expand Down
2 changes: 1 addition & 1 deletion 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.26.3-SNAPSHOT'
version = '0.26.3'
}

project.ext.errorprone_version = '2.11.0'
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 : 2023-Nov-05
Version : 0.26.3

- GeoTuple
Expand Down
2 changes: 1 addition & 1 deletion docs/release_checklist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
cd docs/website
conf.py <--- text substitution is now used to spread the version name
index.rst <-- just the date
rm -rf _build;make html;cd _build;rm html.zip;zip -r html.zip html/
rm -rf _build && make html && cd _build && rm html.zip && zip -r html.zip html/
- Commit and tag release
- Create zip and jar files
VERSION=v0.22;PRJNAME=georegression-$VERSION
Expand Down
10 changes: 5 additions & 5 deletions docs/website/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@
# built documents.
#
# The short X.Y version.
version = '0.26.2'
version = '0.26.3'
# The full version, including alpha/beta/rc tags.
release = '0.26.2'
release = '0.26.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = 'en'

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
Expand Down Expand Up @@ -292,5 +292,5 @@
# Specifies keywords to replace in .rst files
rst_epilog = '.. |geo_version| replace:: %s' % version

extlinks = {'sourceforge': ('https://sourceforge.net/projects/georegression/files/v{}/georegression-v{}-%s.zip/download/'.format(version,version), ''),
'gitexample' : ('https://github.com/lessthanoptimal/GeoRegression/tree/v{}/examples/src/georegression/examples/%s'.format(version),'')}
extlinks = {'sourceforge': ('https://sourceforge.net/projects/georegression/files/v{}/georegression-v{}-%s.zip/download/'.format(version,version), '%s'),
'gitexample' : ('https://github.com/lessthanoptimal/GeoRegression/tree/v{}/examples/src/georegression/examples/%s'.format(version),'%s')}
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 24, 2023
**Released** November 5, 2023
**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 f56a7c9

Please sign in to comment.