Browse Source

build: bump version 0.6.0

tags/v0.6.0
Jérôme Deuchnord 4 years ago
parent
commit
87c1cdad9d
No known key found for this signature in database GPG Key ID: BC6F3C345B7D33B0
4 changed files with 17 additions and 6 deletions
  1. +11
    -0
      CHANGELOG.md
  2. +2
    -2
      kosmorrolib/locales/messages.pot
  3. +1
    -1
      kosmorrolib/version.py
  4. +3
    -3
      test/ephemerides.py

+ 11
- 0
CHANGELOG.md View File

@@ -1,3 +1,14 @@
# [v0.6.0](https://github.com/Deuchnord/kosmorro/compare/v0.5.2...v0.6.0) (2020-03-01)


### Features

* add ability to save PDF file ([2fadc2a](https://github.com/Deuchnord/kosmorro/commit/2fadc2a95ebd7b8e72633d4a7209a08bcb0dfebc))
* add support for maximal elongations of Mercury and Venus ([9dbc093](https://github.com/Deuchnord/kosmorro/commit/9dbc09363134f6b4647d07cb54aea387e1a36fab))
* add support for timezones ([d7730bd](https://github.com/Deuchnord/kosmorro/commit/d7730bd2ad5e1bd0d28de759c674e0c799c0bb06))



# [v0.5.2](https://github.com/Deuchnord/kosmorro/compare/v0.5.1...v0.5.2) (2020-02-04)




+ 2
- 2
kosmorrolib/locales/messages.pot View File

@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: kosmorro 0.5.2\n"
"Project-Id-Version: kosmorro 0.6.0\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2020-02-21 20:14+0100\n"
"POT-Creation-Date: 2020-03-01 14:20+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"


+ 1
- 1
kosmorrolib/version.py View File

@@ -16,4 +16,4 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

VERSION = '0.5.2'
VERSION = '0.6.0'

+ 3
- 3
test/ephemerides.py View File

@@ -13,9 +13,9 @@ class EphemeridesComputerTestCase(unittest.TestCase):
date=date(2019, 11, 18),
position=position)

self.assertEqual('2019-11-18T05:41:30+00:00', star.ephemerides.rise_time.isoformat())
self.assertEqual('2019-11-18T11:45:02+00:00', star.ephemerides.culmination_time.isoformat())
self.assertEqual('2019-11-18T17:48:39+00:00', star.ephemerides.set_time.isoformat())
self.assertRegex(star.ephemerides.rise_time.isoformat(), '^2019-11-18T05:41:')
self.assertRegex(star.ephemerides.culmination_time.isoformat(), '^2019-11-18T11:45:')
self.assertRegex(star.ephemerides.set_time.isoformat(), '^2019-11-18T17:48:')

###################################################################################################################
### MOON PHASE TESTS ###


Loading…
Cancel
Save