Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v3.0.0 #144

Merged
merged 1 commit into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ $ npm install -g @heroku-cli/plugin-addons-admin
$ heroku COMMAND
running command...
$ heroku (--version)
@heroku-cli/plugin-addons-admin/2.4.0 darwin-x64 node-v20.18.2
@heroku-cli/plugin-addons-admin/3.0.0 darwin-x64 node-v20.18.2
$ heroku --help [COMMAND]
USAGE
$ heroku COMMAND
Expand Down Expand Up @@ -60,7 +60,7 @@ DESCRIPTION
compares remote manifest to local manifest and finds differences
```

_See code: [src/commands/addons/admin/manifest/diff.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/manifest/diff.ts)_
_See code: [src/commands/addons/admin/manifest/diff.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v3.0.0/src/commands/addons/admin/manifest/diff.ts)_

## `heroku addons:admin:manifest:generate`

Expand All @@ -82,7 +82,7 @@ EXAMPLES
The file has been saved!
```

_See code: [src/commands/addons/admin/manifest/generate.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/manifest/generate.ts)_
_See code: [src/commands/addons/admin/manifest/generate.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v3.0.0/src/commands/addons/admin/manifest/generate.ts)_

## `heroku addons:admin:manifest:pull SLUG`

Expand All @@ -105,7 +105,7 @@ EXAMPLES
Updating addon-manifest.json... done
```

_See code: [src/commands/addons/admin/manifest/pull.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/manifest/pull.ts)_
_See code: [src/commands/addons/admin/manifest/pull.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v3.0.0/src/commands/addons/admin/manifest/pull.ts)_

## `heroku addons:admin:manifest:push`

Expand All @@ -125,7 +125,7 @@ EXAMPLES
Updating addon-manifest.json... done
```

_See code: [src/commands/addons/admin/manifest/push.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/manifest/push.ts)_
_See code: [src/commands/addons/admin/manifest/push.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v3.0.0/src/commands/addons/admin/manifest/push.ts)_

## `heroku addons:admin:manifests [SLUG]`

Expand All @@ -142,7 +142,7 @@ DESCRIPTION
list manifest history
```

_See code: [src/commands/addons/admin/manifests.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/manifests.ts)_
_See code: [src/commands/addons/admin/manifests.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v3.0.0/src/commands/addons/admin/manifests.ts)_

## `heroku addons:admin:manifests:info [SLUG]`

Expand All @@ -162,7 +162,7 @@ DESCRIPTION
show an individual history manifest
```

_See code: [src/commands/addons/admin/manifests/info.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/manifests/info.ts)_
_See code: [src/commands/addons/admin/manifests/info.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v3.0.0/src/commands/addons/admin/manifests/info.ts)_

## `heroku addons:admin:open [SLUG]`

Expand All @@ -184,5 +184,5 @@ EXAMPLES
Opening https://addons-next.heroku.com/addons/testing-123... done
```

_See code: [src/commands/addons/admin/open.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v2.4.0/src/commands/addons/admin/open.ts)_
_See code: [src/commands/addons/admin/open.ts](https://github.com/heroku/heroku-cli-addons-admin/blob/v3.0.0/src/commands/addons/admin/open.ts)_
<!-- commandsstop -->
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@heroku-cli/plugin-addons-admin",
"description": "Heroku CLI plugin to help Heroku add-on providers integrate their services with Heroku.",
"version": "2.4.0",
"version": "3.0.0",
"author": "Heroku",
"bugs": "https://github.com/heroku/heroku-cli-addons-admin/issues",
"dependencies": {
"@heroku-cli/color": "^2.0.4",
"@heroku-cli/command": "^11.4.0",
"@heroku/http-call": "5.4.0",
"@heroku-cli/schema": "^1.0.25",
"@heroku/http-call": "5.4.0",
"@oclif/core": "^2.16.0",
"diff": "^5.2.0",
"fs-extra": "^9.1.0",
Expand Down
Loading