Skip to content

Commit

Permalink
Merge branch 'matheo-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
cosinekitty committed Nov 9, 2022
2 parents cd2df0b + 3679966 commit 6bfe2c2
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 24 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</td>
<td style="text-align: center;"><a href="demo/c/">Examples</a></td>
<td style="text-align: center;">
<div><a href="source/c/"><img src="https://img.shields.io/badge/C%20%2f%20C%2b%2b-v2.1.8-blue" /></a></div>
<div><a href="source/c/"><img src="https://img.shields.io/badge/C%20%2f%20C%2b%2b-v2.1.9-blue" /></a></div>
<div><a href="source/c/">Code &amp; Docs</a></div>
</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion generate/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.8
2.1.9
2 changes: 1 addition & 1 deletion source/csharp/astronomy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageId>CosineKitty.AstronomyEngine</PackageId>
<PackageVersion>2.1.8</PackageVersion>
<PackageVersion>2.1.9</PackageVersion>
<RepositoryUrl>https://github.com/cosinekitty/astronomy</RepositoryUrl>
<Authors>Don Cross</Authors>
<Title>Astronomy Engine</Title>
Expand Down
42 changes: 24 additions & 18 deletions source/js/package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,16 @@
{
"name": "astronomy-engine",
"version": "2.1.8",
"version": "2.1.9",
"description": "Astronomy calculation for Sun, Moon, and planets.",
"main": "./astronomy.js",
"module": "./esm/astronomy.js",
"typings": "./astronomy.d.ts",
"files": [
"esm/astronomy.js",
"astronomy.d.ts",
"astronomy.js",
"astronomy.min.js",
"astronomy.browser.js",
"astronomy.browser.min.js"
],
"author": "Donald Cross",
"license": "MIT",
"homepage": "https://github.com/cosinekitty/astronomy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cosinekitty/astronomy.git"
"url": "https://github.com/cosinekitty/astronomy"
},
"bugs": {
"url": "https://github.com/cosinekitty/astronomy/issues"
},
"keywords": [
"astronomy",
Expand All @@ -32,11 +27,22 @@
"constellation",
"orbit"
],
"author": "Donald Cross",
"license": "MIT",
"bugs": {
"url": "https://github.com/cosinekitty/astronomy/issues"
"files": [
"esm/astronomy.js",
"astronomy.d.ts",
"astronomy.js",
"astronomy.min.js",
"astronomy.browser.js",
"astronomy.browser.min.js"
],
"exports": {
".": {
"require": "./astronomy.js",
"import": "./esm/astronomy.js"
}
},
"homepage": "https://github.com/cosinekitty/astronomy#readme",
"main": "./astronomy.js",
"module": "./esm/astronomy.js",
"types": "./astronomy.d.ts",
"sideEffects": false
}
2 changes: 1 addition & 1 deletion source/kotlin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```

Expand Down
2 changes: 1 addition & 1 deletion source/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "io.github.cosinekitty"
version = "2.1.8"
version = "2.1.9"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion source/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 6bfe2c2

Please sign in to comment.