From f4b235fda40d98755b5c33c9f99d9b6b89584ccb Mon Sep 17 00:00:00 2001 From: Don Cross Date: Sun, 6 Feb 2022 21:06:30 -0500 Subject: [PATCH] Fixed #156 - Moon ascending/descending nodes. Python and npm package version: 2.0.11. Finished implementing new functions across all supported languages: EclipticGeoMoon Calculate the Moon's ecliptic geocentric position in angular coordinates. The ecliptic longitude is measured with respect to the mean equinox of date. SearchMoonNode NextMoonNode A pair of functions to search for consecutive occurrences of the Moon's center passing through the ecliptic plane. --- source/js/package.json | 2 +- source/python/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/js/package.json b/source/js/package.json index ef86a02e..99d5a971 100644 --- a/source/js/package.json +++ b/source/js/package.json @@ -1,6 +1,6 @@ { "name": "astronomy-engine", - "version": "2.0.10", + "version": "2.0.11", "description": "Astronomy calculation for Sun, Moon, and planets.", "main": "./astronomy.js", "module": "./esm/astronomy.js", diff --git a/source/python/setup.py b/source/python/setup.py index 4949a620..97a9d19f 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.0.10', + version='2.0.11', description='Astronomy calculation for Sun, Moon, and planets.', long_description=open('README.md').read(), long_description_content_type='text/markdown',