yaclog/CHANGELOG.md

148 lines
3.8 KiB
Markdown
Raw Normal View History

2021-04-17 04:47:21 +00:00
# Changelog
2021-04-17 04:47:21 +00:00
All notable changes to this project will be documented in this file
## Version 1.1.2 - 2022-12-29
2022-12-29 04:49:58 +00:00
### Changed
- yaclog now only tries to use git when invoked with a command that needs it, meaning most sub commands can now be used on systems without git
## Version 1.1.1 - 2022-08-15
### Fixed
- Fixed `yaclog release -C -c` not committing changes to cargo.toml
## Version 1.1.0 - 2022-08-14
### Added
- Added a flag to update Rust Cargo.toml files when releasing a new version
## Version 1.0.4 - 2022-04-08
2022-04-08 06:35:37 +00:00
### Fixed
- Fixed tests folder being installed as a package
## Version 1.0.3 - 2021-05-12
2021-05-12 05:13:50 +00:00
### Fixed
- Fixed `show` command not working with Click version 8
- Fixed release message incorrectly stating if a commit will be created or not
## Version 1.0.2 - 2021-05-12
2021-05-12 02:04:31 +00:00
### Changed
- Updated to support Click version 8
2021-05-12 02:12:31 +00:00
- Modified module documentation page titles to include a module role
2021-05-12 02:04:31 +00:00
### Fixed
- Fixed tag names with spaces in versions
2021-05-12 02:04:31 +00:00
2021-05-12 02:18:54 +00:00
## Version 1.0.1 - 2021-05-10
2021-05-10 02:39:48 +00:00
### Fixed
- Fixed broken header in new changelogs
2021-05-10 02:42:01 +00:00
- Improved consistency in command documentation metavars
2021-05-10 02:39:48 +00:00
2021-05-12 02:18:54 +00:00
## Version 1.0.0 - 2021-05-07
2021-04-30 02:43:18 +00:00
### Changed
- API changes:
- `header` attribute renamed to `preamble` to avoid confusion.
2021-05-01 04:19:04 +00:00
- improved version header parsing to be more robust and handle multi-word version names.
- improved version number incrementing in `release`.
- can now handle other text surrounding a pep440-compliant version number, which will not be modified
- can now handle pre-releases correctly. The version to increment is the most recent version in the log with a valid pep440 version number in it.
- Release increment and prerelease increments can be mixed, allowing e.g: `yaclog release -mr` to create a release candidate with in incremented minor version number.
- `release` base version is now an argument instead of an option, for consistency with other commands.
2021-04-30 02:43:18 +00:00
### Removed
- `entry` with multiple `-b` options no longer add sub bullet points, instead adding each bullet as its own line.
2021-05-04 03:50:04 +00:00
### Added
2021-05-07 06:13:09 +00:00
- Terminal output has color to distinguish version names/headers, sections, and git information.
- Extra newlines are added between versions to improve readability of the raw markdown file.
2021-05-04 03:50:04 +00:00
2021-05-12 02:18:54 +00:00
## Version 0.3.3 - 2021-04-27
2021-04-25 09:16:19 +00:00
### Added
- Unit tests in the `tests` folder
2021-04-27 02:57:25 +00:00
### Fixed
2021-04-25 09:24:22 +00:00
2021-04-26 02:28:50 +00:00
- Default links and dates in VersionEntry are now consistently `None`
2021-05-01 04:19:04 +00:00
- Changelog links dict now contains version links. Modified version links will overwrite those in the table when writing to a file
2021-04-26 02:28:50 +00:00
- Changelog object no longer errors when creating without a path.
2021-04-26 05:19:14 +00:00
- `release` now resets lesser version values when incrementing
2021-04-26 05:20:42 +00:00
- `release` now works with logs that have only unreleased changes
2021-04-25 09:24:22 +00:00
2021-05-12 02:18:54 +00:00
## Version 0.3.2 - 2021-04-24
2021-04-24 09:58:59 +00:00
### Added
2021-04-24 20:59:56 +00:00
- Readme file now has installation and usage instructions.
- yaclog command entry point added to setup.cfg.
2021-04-24 09:58:59 +00:00
### Changed
2021-04-24 20:59:56 +00:00
- `release -c` will no longer create empty commits, and will use the current commit instead.
2021-04-24 09:58:59 +00:00
### Fixed
2021-04-24 20:59:56 +00:00
- `release` and `entry` commands now work using empty changelogs.
2021-04-24 09:58:59 +00:00
2021-05-12 02:18:54 +00:00
## Version 0.3.1 - 2021-04-24
### Added
- `yaclog` tool for manipulating changelogs from the command line
- `init` command to make a new changelog
- `format` command to reformat the changelog
- `show` command to show changes from the changelog
- `entry` command for manipulating entries in the changelog
- `tag` command for manipulating tags in the changelog
- `release` command for creating releases
2021-05-12 02:18:54 +00:00
## Version 0.2.0 - 2021-04-19
2021-04-19 05:04:22 +00:00
### Added
- New yak log logo drawn by my sister
### Changed
- Updated package metadata
- Rewrote parser to use a 2-step method that is more flexible.
- Parser can now handle code blocks.
- Parser can now handle setext-style headers and H2s not conforming to the schema.
2021-04-19 05:04:22 +00:00
2021-05-12 02:18:54 +00:00
## Version 0.1.0 - 2021-04-16
2021-04-17 04:47:21 +00:00
First release
### Added
2021-04-19 05:04:22 +00:00
- `yaclog.read()` method to parse changelog files