Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 1.09 KB

CHANGELOG.md

File metadata and controls

47 lines (33 loc) · 1.09 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

[0.1.1] - 2023-09-16

  • Update README.md

[0.1.0] - 2023-09-16

  • Initial release with first DSN parser
  • 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)"