Skip to content

Latest commit

 

History

History
147 lines (89 loc) · 2.96 KB

CHANGELOG.md

File metadata and controls

147 lines (89 loc) · 2.96 KB

Changelog

All notable changes to this project will be documented in this file.

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

Releases

[1.0.1] - 2024-12-07

  • Add ixnode/php-cli-image package with version 1.0.2

[1.0.0] - 2024-12-07

  • Add ixnode/php-cli-image package with version 1.0.0
  • Switch to version 1.0.0

[0.1.21] - 2024-04-08

  • Fix wrong given coordinates like this:
    • 51,0504,13,7373 -> 51.0504,13.7373
    • -31,425299, -64,201743 -> -31.425299, -64.201743
    • etc.

[0.1.20] - 2023-08-28

  • Add getRaw method to Coordinate class

[0.1.19] - 2023-08-16

  • Fix -0 detection

[0.1.18] - 2023-08-14

  • Add ixnode/php-cli-image library

[0.1.17] - 2023-08-01

  • Fix timezone parser

[0.1.16] - 2023-08-01

  • Add timezone parser

[0.1.15] - 2023-07-31

  • Add getString and getStringDMS to Coordinate class

[0.1.14] - 2023-07-31

  • Add input trim to input parser

[0.1.13] - 2023-07-28

  • Add Google and OpenStreetMap links to Coordinate class

[0.1.12] - 2023-07-28

  • Update README.md

[0.1.11] - 2023-07-28

  • Add cardinal direction and longitude and latitude to screen
  • Add colors to longitude / latitude window
  • Update README.md

[0.1.10] - 2023-07-25

  • Update README.md

[0.1.9] - 2023-07-24

  • Extend file path with vendor/ixnode/php-coordinate if file not found

[0.1.8] - 2023-07-24

  • Add cli command
  • Add direction and degree to target coordinate

[0.1.7] - 2023-07-23

  • Update README.md

[0.1.6] - 2023-07-22

  • Update README.md

[0.1.5] - 2023-07-22

  • Add haversine formula to calculate distance on earth
  • Add getDistance method to Coordinate class

[0.1.4] - 2023-07-22

  • Composer update
  • Upgrading friendsofphp/php-cs-fixer (v3.21.1 => v3.22.0)
  • Upgrading phpstan/phpstan (1.10.25 => 1.10.26)
  • Upgrading povils/phpmnd (v3.1.0 => v3.2.0)

[0.1.3] - 2023-07-22

  • Possibility to specify float numbers in the Coordinate class

[0.1.2] - 2023-07-10

  • Add DMS parser
  • Add README.md updates

[0.1.1] - 2023-07-03

  • Add Google Maps URL parser

[0.1.0] - 2023-07-03

  • Initial release with first Coordinate parser and converter
  • Add src
  • Add tests
    • PHP Coding Standards Fixer
    • PHPMND - PHP Magic Number Detector
    • PHPStan - PHP Static Analysis Tool
    • PHPUnit - The PHP Testing Framework
    • Rector - Instant Upgrades and Automated Refactoring
  • Add README.md
  • Add LICENSE.md

Add new version

# Checkout master branch
$ git checkout main && git pull

# Check current version
$ vendor/bin/version-manager --current

# Increase patch version
$ vendor/bin/version-manager --patch

# Change changelog
$ vi CHANGELOG.md

# Push new version
$ git add CHANGELOG.md VERSION && git commit -m "Add version $(cat VERSION)" && git push

# Tag and push new version
$ git tag -a "$(cat VERSION)" -m "Version $(cat VERSION)" && git push origin "$(cat VERSION)"