From 367996693171a41638453d72ac1ad991e4635f1d Mon Sep 17 00:00:00 2001 From: Don Cross Date: Tue, 8 Nov 2022 20:59:17 -0500 Subject: [PATCH] Version 2.1.9: attempt fix for Deno/Node type info. Updated the version number so I can create a new npm package to test the pull request from @matheo that should allow TypeScript types to be exported correctly. --- 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 e67144a5..abf42436 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 ebf14b46..63a1a1ca 100644 --- a/generate/version.txt +++ b/generate/version.txt @@ -1 +1 @@ -2.1.8 +2.1.9 diff --git a/source/csharp/astronomy.csproj b/source/csharp/astronomy.csproj index c72a61c0..e912e7d4 100644 --- a/source/csharp/astronomy.csproj +++ b/source/csharp/astronomy.csproj @@ -4,7 +4,7 @@ true true CosineKitty.AstronomyEngine - 2.1.8 + 2.1.9 https://github.com/cosinekitty/astronomy Don Cross Astronomy Engine diff --git a/source/js/package.json b/source/js/package.json index cfc1f376..79da0473 100644 --- a/source/js/package.json +++ b/source/js/package.json @@ -1,6 +1,6 @@ { "name": "astronomy-engine", - "version": "2.1.8", + "version": "2.1.9", "description": "Astronomy calculation for Sun, Moon, and planets.", "author": "Donald Cross", "license": "MIT", diff --git a/source/kotlin/README.md b/source/kotlin/README.md index 0e89eef7..31ec6cf1 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.8") + implementation("io.github.cosinekitty:astronomy:2.1.9") } ``` diff --git a/source/kotlin/build.gradle.kts b/source/kotlin/build.gradle.kts index 498b99cd..a4a3852c 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.8" +version = "2.1.9" repositories { mavenCentral() diff --git a/source/python/setup.py b/source/python/setup.py index b8ed9fa8..049fd1bc 100644 --- a/source/python/setup.py +++ b/source/python/setup.py @@ -6,7 +6,7 @@ def _LoadFile(filename): setup( name='astronomy-engine', - version='2.1.8', + version='2.1.9', description='Astronomy calculation for Sun, Moon, and planets.', long_description=_LoadFile('README.md'), long_description_content_type='text/markdown',