Skip to content

Commit

Permalink
bump to 0.6.0 (#181)
Browse files Browse the repository at this point in the history
- rebase the changes from nightly
- bump
  - NGM to `0.6.0`
  - Nushell to `0.90.1`

> **Note**
> 
> ```nushell
> git diff nightly
> ```
> correctly gives
> ```diff
> diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
> index 57437cb..71a1bc6 100644
> --- a/.github/workflows/ci.yml
> +++ b/.github/workflows/ci.yml
> @@ -13,10 +13,10 @@ jobs:
>    tests:
>      uses: ./.github/workflows/nupm-tests.yml
>      with:
> -      nu_version: "0.89.0"
> +      nu_version: "0.90.1"
>        nupm_revision: "66e2eaa848e3f72c1b4a841f26f4dc7efc4fedb9"
>  
>    documentation:
>      uses: ./.github/workflows/check-documentation.yml
>      with:
> -      nu_version: "0.89.0"
> +      nu_version: "0.90.1"
> diff --git a/pkgs/nu-git-manager-sugar/nupm.nuon
b/pkgs/nu-git-manager-sugar/nupm.nuon
> index bee1672..a884a30 100644
> --- a/pkgs/nu-git-manager-sugar/nupm.nuon
> +++ b/pkgs/nu-git-manager-sugar/nupm.nuon
> @@ -1,6 +1,6 @@
>  {
>      name: "nu-git-manager-sugar"
> -    version: 0.5.0
> +    version: 0.6.0
> description: "A collection of extra Nushell tools to manage `git`
repositories."
> documentation:
"https://github.com/amtoine/nu-git-manager/blob/main/README.md"
>      maintainers: [
> @@ -9,7 +9,7 @@
>      ]
> license: "https://github.com/amtoine/nu-git-manager/blob/main/LICENSE"
>      dependencies: {
> -        nushell: 0.89.0
> +        nushell: 0.90.1
>          git: 2.40.1
>          optionals: {
>              "sugar gh": {
> diff --git a/pkgs/nu-git-manager/nupm.nuon
b/pkgs/nu-git-manager/nupm.nuon
> index 9fa9895..6cc771c 100644
> --- a/pkgs/nu-git-manager/nupm.nuon
> +++ b/pkgs/nu-git-manager/nupm.nuon
> @@ -1,6 +1,6 @@
>  {
>      name: "nu-git-manager"
> -    version: 0.5.0
> +    version: 0.6.0
> description: "A collection of Nushell tools to manage `git`
repositories."
> documentation:
"https://github.com/amtoine/nu-git-manager/blob/main/README.md"
>      maintainers: [
> @@ -9,7 +9,7 @@
>      ]
> license: "https://github.com/amtoine/nu-git-manager/blob/main/LICENSE"
>      dependencies: {
> -        nushell: 0.89.0
> +        nushell: 0.90.1
>          git: 2.40.1
>      }
>      type: "module"
> ```
  • Loading branch information
amtoine authored Feb 7, 2024
1 parent 567ff2b commit 763f769
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
tests:
uses: ./.github/workflows/nupm-tests.yml
with:
nu_version: "0.89.0"
nu_version: "0.90.1"
nupm_revision: "66e2eaa848e3f72c1b4a841f26f4dc7efc4fedb9"

documentation:
uses: ./.github/workflows/check-documentation.yml
with:
nu_version: "0.89.0"
nu_version: "0.90.1"
3 changes: 3 additions & 0 deletions docs/nu-git-manager-sugar/dotfiles/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
## Description
the `dotfiles` module ships the `gm cfg` command

the goal of `gm cfg` is to provide tools to interact with dotfiles managed
through a _bare_ repo.

## Commands
- [`gm cfg`](gm-cfg.md)
- [`gm cfg edit`](gm-cfg-edit.md)
2 changes: 2 additions & 0 deletions docs/nu-git-manager-sugar/extra/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
## Description
extends the core `gm` command with additional subcommands.

/!\ this module is part of the optional NGM. /!\

## Commands
- [`gm report`](gm-report.md)
2 changes: 2 additions & 0 deletions docs/nu-git-manager-sugar/git/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
## Description
ships a bunch of helper commands that augments the capabilities of Git.

/!\ this module is part of the optional NGM. /!\

## Commands
- [`gm repo bisect`](gm-repo-bisect.md)
- [`gm repo branch interactive-delete`](gm-repo-branch-interactive-delete.md)
Expand Down
2 changes: 2 additions & 0 deletions docs/nu-git-manager-sugar/git/prompt/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
## Description
provides a command to setup a Git-based prompt for Nushell.

/!\ this module is part of the optional NGM. /!\

## Commands
- [`setup`](setup.md)
2 changes: 2 additions & 0 deletions docs/nu-git-manager-sugar/github/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
## Description
provides helper commands to simplify the use of the GitHub CLI.

/!\ this module is part of the optional NGM. /!\

## Commands
- [`gm gh pr checkout`](gm-gh-pr-checkout.md)
- [`gm gh query-api`](gm-gh-query-api.md)
Expand Down
4 changes: 4 additions & 0 deletions docs/nu-git-manager-sugar/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
`nu-git-manager-sugar` is the additional module and package of NGM, with sugar
on top.

it ships things like extensions to the core `gm` command, augments Git with
automation commands and can provide helper commands around utilities such as
the GitHub CLI.

## Commands
no commands

Expand Down
6 changes: 6 additions & 0 deletions docs/nu-git-manager/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
## Description
`nu-git-manager` is the core module and package of NGM.

it features all required commands to interact with and manage Git repos.

this module ships the `gm` command and a bunch of subcommands, allowing you to
clone, list, remove, ..., repositories without worrying about where they are
on your filesystem!

## Commands
- [`gm`](gm.md)
- [`gm clean`](gm-clean.md)
Expand Down
4 changes: 2 additions & 2 deletions pkgs/nu-git-manager-sugar/nupm.nuon
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
name: "nu-git-manager-sugar"
version: 0.5.0
version: 0.6.0
description: "A collection of extra Nushell tools to manage `git` repositories."
documentation: "https://github.com/amtoine/nu-git-manager/blob/main/README.md"
maintainers: [
Expand All @@ -9,7 +9,7 @@
]
license: "https://github.com/amtoine/nu-git-manager/blob/main/LICENSE"
dependencies: {
nushell: 0.89.0
nushell: 0.90.1
git: 2.40.1
optionals: {
"sugar gh": {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/nu-git-manager/nupm.nuon
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
name: "nu-git-manager"
version: 0.5.0
version: 0.6.0
description: "A collection of Nushell tools to manage `git` repositories."
documentation: "https://github.com/amtoine/nu-git-manager/blob/main/README.md"
maintainers: [
Expand All @@ -9,7 +9,7 @@
]
license: "https://github.com/amtoine/nu-git-manager/blob/main/LICENSE"
dependencies: {
nushell: 0.89.0
nushell: 0.90.1
git: 2.40.1
}
type: "module"
Expand Down
2 changes: 2 additions & 0 deletions toolkit.nu
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,8 @@ def document-module [
"## Description",
$module.usage,
"",
$module.extra_usage,
"",
"## Commands",
$commands,
]
Expand Down

0 comments on commit 763f769

Please sign in to comment.