Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.25 KB

File metadata and controls

59 lines (39 loc) · 1.25 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.4] - 2023-03-04

  • Output changes

[0.1.3] - 2023-03-04

  • Change order of time and message

[0.1.2] - 2023-03-04

  • Set more distance to time output

[0.1.1] - 2023-03-03

  • Add TestDoxPrinter class

[0.1.0] - 2023-02-05

  • Initial release
  • 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)"