Skip to content

Commit

Permalink
v3.3.2 (#243)
Browse files Browse the repository at this point in the history
* Rebuild dist with proper deps

* Add YANKED to v3.3.1

* Better description
  • Loading branch information
dangoslen authored Mar 16, 2023
1 parent cb5473d commit cfbadf2
Show file tree
Hide file tree
Showing 5 changed files with 4,430 additions and 1,175 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [UNRELEASED]

## [v3.3.1]
## [v3.3.2]
### Fixed
- Properly rebuilds the `dist.index.js` meant to be built in `v3.3.1`.

## [v3.3.1] - YANKED

_This release has been yanked and should not be used. Please use `v3.3.2` instead. The tag for this release will be deleted on `2023-06-01` and will not be usable after that date. If you are using the `v3` tag, you will get the latest version automatically._

### Fixed
- Removes the deprecated `set-output` command by bumping `@actions/core`. This fixes [issue #222](https://github.com/dangoslen/changelog-enforcer/issues/222)
Expand Down
12 changes: 12 additions & 0 deletions bin/cut-release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

VERSION=$1

# Bump package.json
jq --arg VERSION $VERSION '.version = $VERSION' package.json > updated.json && mv updated.json package.json

# Install latest deps
npm install

# Run all tests and package the dist/*
npm run all
Loading

0 comments on commit cfbadf2

Please sign in to comment.