@@ -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) | # [v0.5.2](https://github.com/Deuchnord/kosmorro/compare/v0.5.1...v0.5.2) (2020-02-04) | ||||
@@ -6,9 +6,9 @@ | |||||
#, fuzzy | #, fuzzy | ||||
msgid "" | msgid "" | ||||
msgstr "" | msgstr "" | ||||
"Project-Id-Version: kosmorro 0.5.2\n" | |||||
"Project-Id-Version: kosmorro 0.6.0\n" | |||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||||
"Language-Team: LANGUAGE <LL@li.org>\n" | "Language-Team: LANGUAGE <LL@li.org>\n" | ||||
@@ -16,4 +16,4 @@ | |||||
# You should have received a copy of the GNU Affero General Public License | # 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/>. | # along with this program. If not, see <https://www.gnu.org/licenses/>. | ||||
VERSION = '0.5.2' | |||||
VERSION = '0.6.0' |
@@ -13,9 +13,9 @@ class EphemeridesComputerTestCase(unittest.TestCase): | |||||
date=date(2019, 11, 18), | date=date(2019, 11, 18), | ||||
position=position) | 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 ### | ### MOON PHASE TESTS ### | ||||