We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f571854 commit b8d115dCopy full SHA for b8d115d
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog
2
3
+## Plotters latest (?)
4
+### Fixed
5
+
6
+- Division by zero with logarithmic coord (issue #143)
7
+- Update dependencies
8
9
## Plotters 0.2.14 (2020-05-05)
10
### Fixed
11
publish.sh
@@ -35,10 +35,9 @@ git commit -m "Bump version number from ${OLD_VERSION} to ${NEW_VERSION}"
35
git tag -a "v${NEW_VERSION}" -m "Plotters ${NEW_VERSION} release"
36
37
# 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
+MSRV=$(cat ${ROOT}/doc-template/msrv.txt)
+rustup install ${MSRV}
+cargo +${MSRV} build
42
43
cargo publish
44
git push origin
0 commit comments