Skip to content

Commit f23cc6c

Browse files
authored
Release 1.1.0 (#17)
* chore: add updated deps and year bump * chore: prepare release 1.1.0
1 parent db4b8d9 commit f23cc6c

2 files changed

Lines changed: 15 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.1.0] - 2022-05-27
11+
1012
### Added
1113

1214
- New input `build` for `draft-new-release.yml` to build the crate before add & commit the files, allows lockfile update
1315
- New input `check_publish` for `draft-new-release.yml` to dry run the cargo publish before add & commit the files, allows to not open a PR on unpublishable state.
1416

17+
### Changed
18+
19+
- Update `actions/checkout@v3`, `actions/download-artifact@v3`, `thomaseizinger/create-pull-request@1.2.2`, `EndBug/add-and-commit@v9.0.0`, `softprops/action-gh-release@v1`
20+
- Bump header's year to 2022
21+
1522
## [1.0.2] - 2021-11-01
1623

1724
### Added
@@ -41,7 +48,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4148
- `Draft new release` shared workflow
4249
- `Release to crates.io` shared workflow
4350

44-
[Unreleased]: https://github.com/farcaster-project/workflows/compare/v1.0.2...HEAD
51+
[Unreleased]: https://github.com/farcaster-project/workflows/compare/v1.1.0...HEAD
52+
[1.1.0]: https://github.com/farcaster-project/workflows/compare/v1.0.2...v1.1.0
4553
[1.0.2]: https://github.com/farcaster-project/workflows/compare/v1.0.1...v1.0.2
4654
[1.0.1]: https://github.com/farcaster-project/workflows/compare/v1.0.0...v1.0.1
4755
[1.0.0]: https://github.com/farcaster-project/workflows/compare/0c88c46cfe1d25098ec47216e4b2dfc8bf871338...v1.0.0

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Workflow version](https://img.shields.io/badge/Workflow%20version-@v1.0.2-blue)](https://github.com/farcaster-project/workflows/releases/tag/v1.0.2)
1+
[![Workflow version](https://img.shields.io/badge/Workflow%20version-@v1.1.0-blue)](https://github.com/farcaster-project/workflows/releases/tag/v1.1.0)
22
[![License: MIT or Apache](https://img.shields.io/badge/License-MIT%20or%20Apache%202.0-yellow.svg)](./COPYRIGHT)
33

44
# Shared Workflows
@@ -34,7 +34,7 @@ on:
3434
jobs:
3535
draft-new-release:
3636
name: "Draft a new release"
37-
uses: farcaster-project/workflows/.github/workflows/draft-new-release.yml@v1.0.2
37+
uses: farcaster-project/workflows/.github/workflows/draft-new-release.yml@v1.1.0
3838
with:
3939
version: ${{ github.event.inputs.version }}
4040
build: false
@@ -61,7 +61,7 @@ jobs:
6161
create_release:
6262
name: Create from merged release branch
6363
if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/')
64-
uses: farcaster-project/workflows/.github/workflows/create-release.yml@v1.0.2
64+
uses: farcaster-project/workflows/.github/workflows/create-release.yml@v1.1.0
6565
```
6666

6767
If you want to attached files to the release you can declare a `create_release` job with:
@@ -87,7 +87,7 @@ jobs:
8787
create_release:
8888
name: Create from merged release branch
8989
if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/')
90-
uses: farcaster-project/workflows/.github/workflows/create-release.yml@v1.0.2
90+
uses: farcaster-project/workflows/.github/workflows/create-release.yml@v1.1.0
9191
needs: produce_binaries
9292
with:
9393
artifact_name: release-folder
@@ -101,7 +101,7 @@ You can add another job after `create_release`, e.g. `release_to_crates`, trigge
101101
```yaml
102102
release_to_crates:
103103
name: Release to crates.io
104-
uses: farcaster-project/workflows/.github/workflows/release-to-crates-io.yml@v1.0.2
104+
uses: farcaster-project/workflows/.github/workflows/release-to-crates-io.yml@v1.1.0
105105
needs: create_release
106106
secrets:
107107
cratesio_token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
@@ -123,7 +123,7 @@ on:
123123
jobs:
124124
release:
125125
name: "Publish the new release to crates.io"
126-
uses: farcaster-project/workflows/.github/workflows/release-to-crates-io.yml@v1.0.2
126+
uses: farcaster-project/workflows/.github/workflows/release-to-crates-io.yml@v1.1.0
127127
secrets:
128128
cratesio_token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
129129
```

0 commit comments

Comments
 (0)