Browse Source

v1.22.0

remotes/origin/add-with-shims
Gal Schlezinger 4 years ago
parent
commit
5ffff08d58
  1. 13
      .ci/generate-changelog.sh
  2. 36
      CHANGELOG.md
  3. 2
      Cargo.lock
  4. 2
      Cargo.toml
  5. 4
      README.md
  6. 24
      package.json
  7. 1099
      yarn.lock

13
.ci/generate-changelog.sh

@ -0,0 +1,13 @@ @@ -0,0 +1,13 @@
#!/bin/bash
if [ "$1" = "" ]; then
echo "Taking version from binary" >&2
NEXT_VERSION="$(cargo run --quiet -- --version)"
else
NEXT_VERSION="$1"
fi
echo "Generating changelog for $NEXT_VERSION"
lerna-changelog --from=v1.0.0 "--next-version=$NEXT_VERSION" >CHANGELOG.md
prettier --write CHANGELOG.md

36
CHANGELOG.md

@ -1,4 +1,34 @@ @@ -1,4 +1,34 @@
## v1.21.0 (2020-06-04)
## fnm 1.22.0 (2020-10-07)
#### New Feature 🎉
- [#244](https://github.com/Schniz/fnm/pull/244) Allow using homebrew to install with the installation script ([@Schniz](https://github.com/Schniz))
#### Bugfix 🐛
- [#225](https://github.com/Schniz/fnm/pull/225) Remove unused condition ([@joliss](https://github.com/joliss))
#### Internal 🛠
- [#246](https://github.com/Schniz/fnm/pull/246) Rewrite fnm in Rust (merge fnm.rs into fnm) — adding Windows support! ([@Schniz](https://github.com/Schniz))
- [#243](https://github.com/Schniz/fnm/pull/243) Add installation script testing ([@Schniz](https://github.com/Schniz))
#### Documentation 📝
- [#247](https://github.com/Schniz/fnm/pull/247) fixed a typo ([@0xflotus](https://github.com/0xflotus))
- [#245](https://github.com/Schniz/fnm/pull/245) Shorten the installation script ([@Schniz](https://github.com/Schniz))
- [#237](https://github.com/Schniz/fnm/pull/237) docs: add explanation of uninstall command to README ([@kazushisan](https://github.com/kazushisan))
- [#235](https://github.com/Schniz/fnm/pull/235) Mention fnm omf plugin for Fish users ([@idkjs](https://github.com/idkjs))
#### Committers: 5
- 0xflotus ([@0xflotus](https://github.com/0xflotus))
- Alain Armand ([@idkjs](https://github.com/idkjs))
- Gal Schlezinger ([@Schniz](https://github.com/Schniz))
- Jo Liss ([@joliss](https://github.com/joliss))
- Kazushi Konosu ([@kazushisan](https://github.com/kazushisan))
## v1.21.0 (2020-06-07)
#### New Feature 🎉
@ -301,7 +331,7 @@ @@ -301,7 +331,7 @@
#### Bugfix 🐛
- [#77](https://github.com/Schniz/fnm/pull/77) Fix "command not found: elsif" error ([@johnletey](https://github.com/johnletey))
- [#77](https://github.com/Schniz/fnm/pull/77) Fix "command not found: elsif" error ([@jletey](https://github.com/jletey))
#### Internal 🛠
@ -310,7 +340,7 @@ @@ -310,7 +340,7 @@
#### Committers: 2
- Gal Schlezinger ([@Schniz](https://github.com/Schniz))
- John Letey ([@johnletey](https://github.com/johnletey))
- John Letey ([@jletey](https://github.com/jletey))
## v1.7.0 (2019-03-04)

2
Cargo.lock generated

@ -428,7 +428,7 @@ dependencies = [ @@ -428,7 +428,7 @@ dependencies = [
[[package]]
name = "fnm"
version = "0.1.0"
version = "1.22.0"
dependencies = [
"atty",
"chrono",

2
Cargo.toml

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
[package]
name = "fnm"
version = "0.1.0"
version = "1.22.0"
authors = ["Gal Schlezinger <gal@spitfire.co.il>"]
edition = "2018"
build = "build.rs"

4
README.md

@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
<a href="https://dev.azure.com/Schniz/fnm/_build/latest?definitionId=1?branchName=master"><img alt="Build Status" src="https://dev.azure.com/Schniz/fnm/_apis/build/status/Schniz.fnm?branchName=master" /></a>
</h1>
> :rocket: Fast and simple Node.js version manager, built in native ReasonML
> :rocket: Fast and simple Node.js version manager, built in Rust
<div align="center">
<img src="./docs/fnm.svg" alt="Blazing fast!">
@ -20,7 +20,7 @@ @@ -20,7 +20,7 @@
## Installation
### Using a script
### Using a script (MacOS/Linux)
For `bash`, `zsh` and `fish` shells, there's an [automatic installation script](./.ci/install.sh):

24
package.json

@ -0,0 +1,24 @@ @@ -0,0 +1,24 @@
{
"name": "fnm",
"version": "0.0.0",
"private": true,
"repository": "git@github.com:Schniz/fnm.git",
"author": "Gal Schlezinger <gal@spitfire.co.il>",
"license": "GPLv3",
"scripts": {
"changelog": "./.ci/generate-changelog.sh"
},
"changelog": {
"repo": "Schniz/fnm",
"labels": {
"PR: New Feature": "New Feature 🎉",
"PR: Bugfix": "Bugfix 🐛",
"PR: Internal": "Internal 🛠",
"PR: Documentation": "Documentation 📝"
}
},
"devDependencies": {
"lerna-changelog": "^1.0.1",
"prettier": "^2.1.2"
}
}

1099
yarn.lock

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save