Skip to content

Commit b8d115d

Browse files
committed
Update the misc files
1 parent f571854 commit b8d115d

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Plotters latest (?)
4+
### Fixed
5+
6+
- Division by zero with logarithmic coord (issue #143)
7+
- Update dependencies
8+
39
## Plotters 0.2.14 (2020-05-05)
410
### Fixed
511

publish.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,9 @@ git commit -m "Bump version number from ${OLD_VERSION} to ${NEW_VERSION}"
3535
git tag -a "v${NEW_VERSION}" -m "Plotters ${NEW_VERSION} release"
3636

3737
# Verify MSRV
38-
rustup install $(cat ${ROOT}/doc-template/msrv.txt)
39-
rustup default $(cat ${ROOT}/doc-template/msrv.txt)
40-
cargo build
41-
rustup default stable
38+
MSRV=$(cat ${ROOT}/doc-template/msrv.txt)
39+
rustup install ${MSRV}
40+
cargo +${MSRV} build
4241

4342
cargo publish
4443
git push origin

0 commit comments

Comments
 (0)