This commit is contained in:
sagie gur ari 2020-12-13 19:05:48 +00:00
parent e028fd49c5
commit adda01fb1d
3 changed files with 13 additions and 22 deletions

View file

@ -1,8 +1,9 @@
## CHANGELOG
### v0.7.1
### v0.7.1 (2020-12-13)
* Checked in Cargo.lock to help linux distributions package the duckscript CLI #146
* Alpine linux installation instructions #148 (thanks @jirutka)
### v0.7.0 (2020-11-26)

22
Cargo.lock generated
View file

@ -403,9 +403,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
version = "0.2.80"
version = "0.2.81"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d58d1b70b004888f764dfbf6a26a3b0342a1632d33968e4a179d8011c760614"
checksum = "1482821306169ec4d07f6aca392a4681f66c75c9918aa49641a2595db64053cb"
[[package]]
name = "log"
@ -534,12 +534,12 @@ dependencies = [
[[package]]
name = "openssl"
version = "0.10.30"
version = "0.10.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d575eff3665419f9b83678ff2815858ad9d11567e082f5ac1814baba4e2bcb4"
checksum = "8d008f51b1acffa0d3450a68606e6a51c123012edaacb0f4e1426bd978869187"
dependencies = [
"bitflags",
"cfg-if 0.1.10",
"cfg-if 1.0.0",
"foreign-types",
"lazy_static 1.4.0",
"libc",
@ -554,9 +554,9 @@ checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
[[package]]
name = "openssl-sys"
version = "0.9.58"
version = "0.9.59"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a842db4709b604f0fe5d1170ae3565899be2ad3d9cbc72dedc789ac0511f78de"
checksum = "de52d8eabd217311538a39bba130d7dea1f1e118010fee7a033d966845e7d5fe"
dependencies = [
"autocfg",
"cc",
@ -788,9 +788,9 @@ dependencies = [
[[package]]
name = "syn"
version = "1.0.53"
version = "1.0.54"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8833e20724c24de12bbaba5ad230ea61c3eafb05b881c7c9d3cfe8638b187e68"
checksum = "9a2af957a63d6bd42255c359c93d9bfdb97076bd3b820897ce55ffbfbf107f44"
dependencies = [
"proc-macro2",
"quote",
@ -954,9 +954,9 @@ checksum = "a1ca13c08c41c9c3e04224ed9ff80461d97e121589ff27c753a16cb10830ae0f"
[[package]]
name = "vcpkg"
version = "0.2.10"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c"
checksum = "b00bca6106a5e23f3eee943593759b7fcddb00554332e856d990c893966879fb"
[[package]]
name = "walkdir"

View file

@ -16,7 +16,6 @@
* [Language Goals](#lang-goals)
* [Installation](#installation)
* [Homebrew](#installation-homebrew)
* [Alpine Linux](#installation-alpine-linux)
* [Binary Release](#installation-binary-release)
* [Duckscript Tutorial](#tutorial)
* [Hello World Example](#tutorial-hello-world)
@ -70,15 +69,6 @@ This will install duckscript script runner, the standard duckscript SDK and the
You should then have a **duck** executable in your ~/.cargo/bin directory.<br>
Make sure to add ~/.cargo/bin directory to your PATH variable.
<a name="installation-alpine-linux"></a>
### Alpine Linux
```sh
apk add duckscript
```
Note: duckscript package is available since Alpine 3.13.
<a name="installation-homebrew"></a>
### Homebrew