Skip to content

Latest commit

 

History

History
85 lines (58 loc) · 2.55 KB

CHANGELOG.md

File metadata and controls

85 lines (58 loc) · 2.55 KB

Changelog

All notable changes to this project will be documented in this file. Changes coming in future releases can be found in the unreleased section.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

[2.1.0] - 2024-12-03

A minor release adding the ability to convert from millimetres to inches and fixing a minor bug.

Added

  • The ability to convert precipitation from millimetres to inches

Fixed

  • A minor bug in the Variable.convert_to method that would cause the incorrect error to be raised when trying to convert a unit that has no valid conversions.

[2.0.0] - 2024-11-25

Major release. This release deprecates support for old versions of Python and improves the handling of timezones.

Deprecated

  • Support for Python versions 3.6, 3.7, and 3.8. The new minimum version supported is 3.9. This was done to take advantage of the zoneinfo module added in Python 3.9.

Updated

  • Minimum supported requests version updated to v2.25.1
  • Adds better support for timezones to the intervals_for and intervals between methods on the Data class.

[1.2.0] - 2024-07-02

A minor release adding some functionality.

Added

  • Adds ability to convert wind speeds to Beaufort scale

[1.1.0] - 2022-01-01

A minor release adding some functionality.

Added

  • Save location configuration now has support for home directory ('~/') and relative ('../') path notations, fixing #3
  • Updates requests dependency to be more permissive, fixing #5

[1.0.0] - 2020-08-21

The first official release.

Added

  • Place class for storing location information
  • Forecast class for handling fetching, parsing, storing and caching of data
    • Update method for performing an all-encompassing update of data
    • Load method for loading data from a cached file
    • Save method for saving data
  • Data class for storing data
  • Interval class for storing data related to an interval
    • Methods for retrieving intervals for a given day and intervals between given times
  • Variable class for storing variables
    • Support equality and comparison operations provided units are the same
    • Method for converting units
  • Support for configuration to be stored in a configuration file (setup.cfg or .locationforecast)