Skip to content

Commit

Permalink
Fix special version label that were not taken into account on bintray.
Browse files Browse the repository at this point in the history
  • Loading branch information
niconoe- committed Apr 17, 2023
1 parent 7c209e9 commit f6cb7a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Fixed
- Fatal error when analyzing snippets like `$a->$b()` or `$c()`.
- Special versions are now taken into account on `artefacts/bintray.json` when a new release comes out.

## [3.0.0-rc1] - 2023-04-11

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ tag:
@if [ '' != "$(SPECIAL)" ]; then semver special "$(SPECIAL)"; fi
@echo "New release: `semver tag`"
@echo Releasing sources
@sed -i -r "s/(v[0-9]+\.[0-9]+\.[0-9]+)/`semver tag`/g" artifacts/bintray.json
@sed -i -r "s/(v[0-9]+\.[0-9]+\.[0-9]+[^\"]*)/`semver tag`/g" artifacts/bintray.json
@sed -i -r "s/([0-9]{4}\-[0-9]{2}\-[0-9]{2})/`date +%Y-%m-%d`/g" artifacts/bintray.json

# Tag git with last release
Expand Down

0 comments on commit f6cb7a1

Please sign in to comment.