-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed: Oldest supported rustc version to 1.31 from 1.24.
- Update oldest Travis CI version too. - Now using release.toml to update oldest supported rustc. - Now using release.toml to add new header to CHANGELOG.md.
- Loading branch information
Showing
4 changed files
with
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ rust: | |
- stable | ||
- beta | ||
- nightly | ||
- 1.24.0 | ||
- 1.31.0 | ||
|
||
matrix: | ||
allow_failures: | ||
|
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,6 +1,9 @@ | ||
upload-doc = true | ||
pre-release-replacements = [ | ||
{ file="README.md", search="bv = \"[0-9.]*\"", replace="bv = \"{{version}}\"" }, | ||
{ file="src/lib.rs", search="bv = \"[0-9.]*\"", replace="bv = \"{{version}}\"" }, | ||
{ file="CHANGELOG.md", search="\\[Unreleased\\]", replace="[{{version}}] - {{date}}" } | ||
{file="README.md", search="Rust version [0-9.]* and newer", replace="Rust version 1.31 and newer"}, | ||
{file="src/lib.rs", search="Rust version [0-9.]* and newer", replace="Rust version 1.31 and newer"}, | ||
{file="README.md", search="bv = \"[0-9.]*\"", replace="bv = \"{{version}}\""}, | ||
{file="src/lib.rs", search="bv = \"[0-9.]*\"", replace="bv = \"{{version}}\""}, | ||
{file="CHANGELOG.md", search="\\[Unreleased\\]", replace="[{{version}}] - {{date}}"}, | ||
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n\n## [Unreleased]"}, | ||
] |
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