-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #201 from tlsa/tlsa/1.4.0
Prepare for 1.4.0 release
- Loading branch information
Showing
2 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
# SPDX-License-Identifier: ISC | ||
# | ||
# Copyright (C) 2017-2021 Michael Drake <[email protected]> | ||
# Copyright (C) 2017-2023 Michael Drake <[email protected]> | ||
|
||
# CYAML's versioning is <MAJOR>.<MINOR>.<PATCH>[-DEVEL] | ||
# Master branch will always be DEVEL. The release process will be to make | ||
# the release branch, set VESION_DEVEL to 0, and tag the release. | ||
# The main branch will usually be DEVEL. The release process is: | ||
# 0. Create branch for release. | ||
# 1. Update the CHANGES.md file. | ||
# 2. Set MAJOR, MINOR, and PATCH versions appropriately for changes. | ||
# 3. Create PR, review, and merge to main. | ||
# 4. Set VESION_DEVEL to 0, commit to main. | ||
# 5. Tag the release: `git tag -a vN.N.N -m "libcyaml N.N.N"` | ||
# 6. Set VESION_DEVEL to 1, commit to main. | ||
VERSION_MAJOR = 1 | ||
VERSION_MINOR = 3 | ||
VERSION_PATCH = 1 | ||
VERSION_MINOR = 4 | ||
VERSION_PATCH = 0 | ||
VERSION_DEVEL = 1 | ||
VERSION_STR = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH) | ||
|
||
|