Browse Source

Version Packages (#974)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
remotes/origin/list-filter v1.34.0
github-actions[bot] 2 years ago committed by GitHub
parent
commit
8c76ca64a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      .changeset/dry-rocks-smash.md
  2. 5
      .changeset/new-avocados-camp.md
  3. 5
      .changeset/rare-otters-perform.md
  4. 5
      .changeset/warm-ducks-float.md
  5. 14
      CHANGELOG.md
  6. 2
      Cargo.lock
  7. 2
      Cargo.toml
  8. 2
      docs/commands.md
  9. 2
      docs/fnm.svg
  10. 2
      package.json

5
.changeset/dry-rocks-smash.md

@ -1,5 +0,0 @@
---
"fnm": minor
---
Add --corepack-enabled flag for automatically enabling corepack on fnm install

5
.changeset/new-avocados-camp.md

@ -1,5 +0,0 @@
---
"fnm": patch
---
modernize tty check (#973 by @tottoto)

5
.changeset/rare-otters-perform.md

@ -1,5 +0,0 @@
---
"fnm": patch
---
use cygwinpath to make the path posix-like on Windows Bash usage

5
.changeset/warm-ducks-float.md

@ -1,5 +0,0 @@
---
"fnm": patch
---
capitalize "n" to show default (#963 by @Joshuahuahua)

14
CHANGELOG.md

@ -1,5 +1,19 @@
## 1.31.0 (2022-02-16) ## 1.31.0 (2022-02-16)
## 1.34.0
### Minor Changes
- Add --corepack-enabled flag for automatically enabling corepack on fnm install ([#960](https://github.com/Schniz/fnm/pull/960))
### Patch Changes
- modernize tty check (#973 by @tottoto) ([`48b2611`](https://github.com/Schniz/fnm/commit/48b2611e4b1c205f07dcbd50f2fff436becb77c1))
- use cygwinpath to make the path posix-like on Windows Bash usage ([#960](https://github.com/Schniz/fnm/pull/960))
- capitalize "n" to show default (#963 by @Joshuahuahua) ([`48b2611`](https://github.com/Schniz/fnm/commit/48b2611e4b1c205f07dcbd50f2fff436becb77c1))
## 1.33.1 ## 1.33.1
### Patch Changes ### Patch Changes

2
Cargo.lock generated

@ -589,7 +589,7 @@ dependencies = [
[[package]] [[package]]
name = "fnm" name = "fnm"
version = "1.33.1" version = "1.34.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"chrono", "chrono",

2
Cargo.toml

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

2
docs/commands.md

@ -1,7 +1,7 @@
# `fnm` # `fnm`
``` ```
fnm 1.33.1 fnm 1.34.0
A fast and simple Node.js manager A fast and simple Node.js manager
USAGE: USAGE:

2
docs/fnm.svg

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "fnm", "name": "fnm",
"version": "1.33.1", "version": "1.34.0",
"private": true, "private": true,
"repository": "git@github.com:Schniz/fnm.git", "repository": "git@github.com:Schniz/fnm.git",
"author": "Gal Schlezinger <gal@spitfire.co.il>", "author": "Gal Schlezinger <gal@spitfire.co.il>",

Loading…
Cancel
Save