Skip to content

Commit 73b8619

Browse files
committed
chore: #213 Updating version after 1.0.1 release
Signed-off-by: Laurent Broudoux <[email protected]>
1 parent efd80b0 commit 73b8619

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ It allows to launch tests or import API artifacts with minimal dependencies.
1313

1414
## Build Status
1515

16-
Latest release is `1.0.0`.
16+
Latest release is `1.0.1`.
1717

18-
Current development version is `1.0.1`. It is available as a container image named `quay.io/microcks/microcks-cli:nightly`.
18+
Current development version is `1.0.2`. It is available as a container image named `quay.io/microcks/microcks-cli:nightly`.
1919

2020
#### Fossa license and security scans
2121

@@ -40,6 +40,17 @@ Current development version is `1.0.1`. It is available as a container image nam
4040

4141
To get involved with our community, please make sure you are familiar with the project's [Code of Conduct](./CODE_OF_CONDUCT.md).
4242

43+
## Installation
44+
45+
Visit the [Release page](https://github.com/microcks/microcks-cli/releases/tag/1.0.1), browse the **Assets** and download the one matching your platform
46+
47+
OR you can use the [Homebrew](https://brew.sh/) package manager on Linux and MacOS that way:
48+
49+
```sh
50+
brew tap microcks/tap
51+
brew install microcks/tap/microcks
52+
```
53+
4354
## Usage instructions
4455

4556
### Usage
@@ -58,6 +69,7 @@ microcks [command] [flags]
5869
| `start` | Start a local Microcks instance via Docker/Podman | [`start`](documentation/cmd/start.md) |
5970
| `stop` | Stop a local Microcks instance | [`stop`](documentation/cmd/stop.md) |
6071
| `import` | Import API spec files from local filesystem | [`import`](documentation/cmd/import.md) |
72+
| `impor-dir` | Scan a directory and import API spec files. | [`import-dir`](documentation/cmd/import.md) |
6173
| `import-url` | Import API spec files directly from a remote URL | [`import-url`](documentation/cmd/import-url.md) |
6274
| `test` | Run tests against a deployed API using selected runner | [`test`](documentation/cmd/test.md) |
6375
| `version` | Print Microcks CLI version | [`version`](documentation/cmd/version.md) |

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
package version
1717

1818
var (
19-
Version = "1.0.1"
19+
Version = "1.0.2"
2020
)

0 commit comments

Comments
 (0)