Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
krystian-panek-vmltech committed Dec 15, 2022
1 parent 9936ac2 commit 1458d62
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ sh aemw version
Ensure having installed [Go](https://go.dev/dl/) then run command:

- latest released version: `go install github.com/wttech/aemc/cmd/aem@latest`,
- specific released version: `go install github.com/wttech/aemc/cmd/aem@vX.Y.Z` (replace `X.Y.Z` with one of [releases](https://github.com/wttech/aemc/releases)),
- specific released version: `go install github.com/wttech/aemc/cmd/aem@v0.5.10`,
- recently committed version: `go install github.com/wttech/aemc/cmd/aem@main`,

## Ansible Collection
Expand Down Expand Up @@ -224,6 +224,15 @@ export AEM_OUTPUT_MODE=none
export AEM_INSTANCE_PROCESSING_MODE=parallel
```

# Releasing

Below process is planned to be automated:

1. Plan next version number (tag name),
2. Update version to next planned version in `init.sh`, `aemw`,
3. Commit changes, create a tag then push changes and newly created tag,
4. Release job will be run automatically.

# Contributing

Issues reported or pull requests created will be very appreciated.
Expand Down
2 changes: 1 addition & 1 deletion aemw
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env sh

VERSION=${AEMC_VERSION:-"0.5.9"}
VERSION=${AEMC_VERSION:-"0.5.10"}
COMMAND_DEFAULT=${AEMC_COMMAND_DEFAULT:-"setup"}

. aem/api.sh
Expand Down
2 changes: 1 addition & 1 deletion init.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env sh

VERSION=${AEMC_VERSION:-"0.5.9"}
VERSION=${AEMC_VERSION:-"0.5.10"}
SOURCE_URL=https://raw.githubusercontent.com/wttech/aemc/v${VERSION}

AEM_WRAPPER=aemw
Expand Down

0 comments on commit 1458d62

Please sign in to comment.