bumpver/CHANGELOG.md

92 lines
2.8 KiB
Markdown
Raw Normal View History

2018-11-04 21:34:53 +01:00
# Changelog for https://gitlab.com/mbarkhau/pycalver
2018-12-21 19:24:24 +01:00
2020-09-17 16:24:21 +00:00
## NEXT
- New gitlab #7: New style patterns, to be in line with CalVer.org
- Better support for week numbering.
- Better support for optional parts.
2020-09-17 23:46:30 +00:00
- New: Start `BUILD` parts at `1000` to avoid leading zero truncation.
2020-10-04 11:28:53 +00:00
- New: Add `INC0` (0-based) and `INC1` (1-based) parts that do auto increment and rollover.
2020-10-03 23:42:52 +00:00
- New: `MAJOR`/`MINOR`/`PATCH`/`INC` will roll over when a date part changes to their left.
2020-10-03 16:44:30 +00:00
- New gitlab #2: Added `grep` subcommand to find and debug patterns.
2020-10-03 20:03:59 +00:00
- New: Added better error messages to debug regular expressions.
2020-09-17 16:24:21 +00:00
- New gitlab #10: `--pin-date` to keep date parts unchanged, and only increment non-date parts.
2020-10-03 20:03:59 +00:00
- New: Added `--release-num` to increment the `alphaN`/`betaN`/`a0`/`b0`/etc. release number
- New: Added `--date=<iso-date>` parameter to set explicit date (instead of current date).
2020-09-17 16:24:21 +00:00
- Fix gitlab #8: Push tags only pushed tags, not actual commit.
- Fix gitlab #9: Make commit message configurable.
2020-10-03 16:44:30 +00:00
- Fix gitlab #11: Show regexp when `--verbose` is used.
- Fix: Disallow `--release=dev` which has different semantics than other release tags.
2020-10-03 20:03:59 +00:00
- Fix: Entries in `file_patterns` were ignored if there were multiple for the same file.
2020-09-24 21:21:36 +00:00
- Switch main repo from gitlab to github.
2020-09-17 16:24:21 +00:00
2020-07-19 21:56:35 +00:00
## v201907.0036
- Fix: Don't use git/hg command if `commit=False` is configured (thanks @valentin87)
## v201907.0035
2019-07-25 10:48:32 +02:00
- Fix gitlab#6: Add parts `{month_short}`, `{dom_short}`, `{doy_short}`.
2019-07-25 10:48:32 +02:00
- Fix gitlab#5: Better warning when using bump with semver (one of --major/--minor/--patch is required)
2020-07-19 21:56:35 +00:00
- Fix gitlab#4: Make {release} part optional, so that versions generated by --release=final are parsed.
2019-07-09 10:12:50 +02:00
2019-03-29 21:35:09 +01:00
## v201903.0030
2019-03-29 02:40:30 +01:00
- Fix: Use pattern from config instead of hardcoded {pycalver} pattern.
- Fix: Better error messages for git/hg issues.
- Add: Implicit default pattern for config file.
2019-07-09 10:12:50 +02:00
2019-03-24 19:05:16 +01:00
## v201903.0028
- Fix: Add warnings when configured files are not under version control.
- Add: Coloured output for bump --dry
2019-02-22 22:45:42 +01:00
## v201902.0027
2019-02-22 10:30:30 +01:00
- Fix: Allow --release=post
- Fix: Better error reporting for bad patterns
2019-02-22 22:45:42 +01:00
- Fix: Regex escaping issue with "?"
2020-07-19 21:56:35 +00:00
2019-02-22 10:30:30 +01:00
2019-02-21 16:30:27 +01:00
## v201902.0024
2019-02-21 16:02:17 +01:00
2019-02-21 16:30:27 +01:00
- Added: Support for globs in file patterns.
- Fixed: Better error reporting for invalid config.
2020-07-19 21:56:35 +00:00
2019-02-21 16:02:17 +01:00
2019-02-14 22:05:02 +01:00
## v201902.0020
2019-01-06 21:48:30 +01:00
2019-03-24 19:05:16 +01:00
- Added: Support for many more custom version patterns.
2019-01-06 21:48:30 +01:00
## v201812.0018
- Fixed: Better handling of pattern replacements with "-final" releases.
## v201812.0017
2018-12-21 19:24:24 +01:00
2019-07-25 10:48:32 +02:00
- Fixed github#2. `pycalver init` was broken.
2018-12-21 19:24:24 +01:00
- Fixed pattern escaping issues.
- Added lots more tests for cli.
- Cleaned up documentation.
## v201812.0011-beta
2018-12-05 09:37:34 +01:00
- Add version tags using git/hg.
- Use git/hg tags as SSOT for most recent version.
- Start using https://gitlab.com/mbarkhau/bootstrapit
- Move to https://gitlab.com/mbarkhau/pycalver
2018-12-21 19:24:24 +01:00
2018-11-04 21:34:53 +01:00
## v201809.0001-alpha
- Initial release