Skip to content

Commit

Permalink
Version 0.26
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthanoptimal committed May 16, 2023
1 parent 5e36020 commit 59906c2
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 25 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Euler Angles (all possible)
* Rodrigues (axis-angle)
* Quaternions
* Convert between each aother and into 3x3 rotation matices
* Convert between each anther and into 3x3 rotation matrices
* Homogenous Coordinates
* Implicit 2D z=1 and 3D w=1
* Best Fit
Expand All @@ -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.25.2'
compile group: 'org.georegression', name: 'georegression', version: '0.26'
```

## Build Instructions
Expand Down
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@ import net.ltgt.gradle.errorprone.CheckSeverity
import org.gradle.api.tasks.testing.logging.TestExceptionFormat

plugins {
id "com.peterabeles.gversion" version "1.10.1" apply false
id "com.peterabeles.gversion" version "1.10.2" apply false
id "net.ltgt.errorprone" version "2.0.1" apply false
}

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

group = 'org.georegression'
version = '0.26-SNAPSHOT'
version = '0.26'

createVersionFile.enabled = false // run only once. enabled in types
}

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-May-15
Version : 0.26

- Point
Expand Down
15 changes: 7 additions & 8 deletions docs/bottom.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4KZRTJNHTK"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-10413214-4', 'georegression.org');
ga('send', 'pageview');
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-4KZRTJNHTK');
</script>
<br>
<b>Copyright &copy; 2011-2022 Peter Abeles</b>
<b>Copyright &copy; 2023 Peter Abeles</b>

4 changes: 2 additions & 2 deletions docs/release_checklist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
- 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 createLibraryDirectory;mv libraries ../$PRJNAME-libs;cd ..;zip -r $PRJNAME-libs.zip $PRJNAME-libs
cd $PRJNAME&&./gradlew autogenerate&&./gradlew 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
13 changes: 6 additions & 7 deletions docs/website/_templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@

{% block footer %}
{{ super() }}
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4KZRTJNHTK"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-10413214-4', 'auto');
ga('send', 'pageview');
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-4KZRTJNHTK');
</script>
{% endblock %}
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.25.2'
version = '0.26'
# The full version, including alpha/beta/rc tags.
release = '0.25.2'
release = '0.26'

# 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** February 15, 2023
**Released** May 15, 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 59906c2

Please sign in to comment.