From 4a56f18325f6dcb226d82154d184239993a547ab Mon Sep 17 00:00:00 2001 From: Don Cross Date: Sun, 2 Oct 2022 22:07:23 -0400 Subject: [PATCH] Astronomy Engine version 2.1.4 --- README.md | 2 +- generate/version.txt | 2 +- source/csharp/astronomy.csproj | 2 +- source/js/package.json | 2 +- source/kotlin/README.md | 2 +- source/kotlin/build.gradle.kts | 2 +- source/python/setup.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ee406962..c0551dd1 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Examples -
+
Code & Docs
diff --git a/generate/version.txt b/generate/version.txt index ac2cdeba..7d2ed7c7 100644 --- a/generate/version.txt +++ b/generate/version.txt @@ -1 +1 @@ -2.1.3 +2.1.4 diff --git a/source/csharp/astronomy.csproj b/source/csharp/astronomy.csproj index 4288d23d..48f7e6a3 100644 --- a/source/csharp/astronomy.csproj +++ b/source/csharp/astronomy.csproj @@ -4,7 +4,7 @@ true true CosineKitty.AstronomyEngine - 2.1.3 + 2.1.4 https://github.com/cosinekitty/astronomy Don Cross Astronomy Engine diff --git a/source/js/package.json b/source/js/package.json index 163f5322..5db4c792 100644 --- a/source/js/package.json +++ b/source/js/package.json @@ -1,6 +1,6 @@ { "name": "astronomy-engine", - "version": "2.1.3", + "version": "2.1.4", "description": "Astronomy calculation for Sun, Moon, and planets.", "main": "./astronomy.js", "module": "./esm/astronomy.js", diff --git a/source/kotlin/README.md b/source/kotlin/README.md index 91e078c0..2710b603 100644 --- a/source/kotlin/README.md +++ b/source/kotlin/README.md @@ -25,7 +25,7 @@ allprojects { Now add the dependency: ```kotlin dependencies { - implementation("io.github.cosinekitty:astronomy:2.1.3") + implementation("io.github.cosinekitty:astronomy:2.1.4") } ``` diff --git a/source/kotlin/build.gradle.kts b/source/kotlin/build.gradle.kts index 21fdc233..8730f823 100644 --- a/source/kotlin/build.gradle.kts +++ b/source/kotlin/build.gradle.kts @@ -6,7 +6,7 @@ plugins { } group = "io.github.cosinekitty" -version = "2.1.3" +version = "2.1.4" repositories { mavenCentral() diff --git a/source/python/setup.py b/source/python/setup.py index 62a7c509..e71cde32 100644 --- a/source/python/setup.py +++ b/source/python/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='astronomy-engine', - version='2.1.3', + version='2.1.4', description='Astronomy calculation for Sun, Moon, and planets.', long_description=open('README.md').read(), long_description_content_type='text/markdown',