Skip to content

Commit 0ed48a9

Browse files
authored
chore: freeze 0.13.0 (#487)
* chore: freeze 0.13.0 * add release process doc
1 parent 5e77e19 commit 0ed48a9

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.12.0
1+
0.13.0

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
CHANGELOG
22
=========
33

4+
## 0.13.0
5+
6+
### Improvements
7+
8+
- Add `--string` flag to `env set` to treat the given value as a string.
9+
[#467](https://github.com/pulumi/esc/pull/467)
10+
- Add proper return code to list environments when organization doesn't exist
11+
[#484](https://github.com/pulumi/esc/pull/484)
12+
13+
### Breaking changes
14+
15+
- It is now a syntax error to call a builtin function incorrectly.
16+
[449](https://github.com/pulumi/esc/pull/449)
17+
418
## 0.12.0
519

620
### Improvements

CONTRIBUTING.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## Performing a release
2+
3+
We use [goreleaser](https://goreleaser.com/intro/) for automating releases.
4+
To cut a new release, create a commit that:
5+
- Copy the entries in [CHANGELOG_PENDING](./CHANGELOG_PENDING.md) into [CHANGELOG](./CHANGELOG.md).
6+
CHANGELOG_PENDING is used to generate the release notes. After releasing, the following commit can clear the changes from pending.
7+
- Bumps the version in the [.version](./.version) file, which is used to stamp the version into the binary.
8+
- Tag the commit with a version tag in the format vX.X.X, to trigger the [release automation](./.github/workflows/publish-release.yaml).

0 commit comments

Comments
 (0)