Skip to content

Commit

Permalink
Release v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
perlun committed Mar 12, 2022
1 parent b2f613c commit 70239a9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
# to force it to be regenerated.
.PHONY: \
all auto-generated clean darkerfx-push docs docs-serve docs-test-examples \
install install-latest-snapshot release run src/Perlang.Common/CommonConstants.Generated.cs
install install-latest-snapshot publish-release release run \
src/Perlang.Common/CommonConstants.Generated.cs

RELEASE_PERLANG=src/Perlang.ConsoleApp/bin/Release/net6.0/linux-x64/publish/perlang

Expand Down Expand Up @@ -67,3 +68,8 @@ run: auto-generated

test:
dotnet test --configuration Release

NEXT_RELEASE_TAG=v0.1.1

publish-release:
git release $(NEXT_RELEASE_TAG)
2 changes: 2 additions & 0 deletions release-notes/v0.1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ In addition to the features listed below, a significant effort was made to bring

#### Language features
- Support `int` literals in addition to `double`s [[#40][40]]
- Implement support for optional typing [[#54][54]]
- Support for binary, octal and hexadecimal literals [[#219][219], [#220][220], [#217][217]]
- Support underscores in integer literals [[#221][221]]
- Move away from relying on dynamic for unary prefix/postfix operators [[#227][227]]
Expand Down Expand Up @@ -64,6 +65,7 @@ Thanks to @slovdahl who helped verify that the `linux-arm` and `linux-arm64` por
[17]: https://github.com/perlang-org/perlang/pull/17
[20]: https://github.com/perlang-org/perlang/pull/20
[40]: https://github.com/perlang-org/perlang/pull/40
[54]: https://github.com/perlang-org/perlang/pull/54
[126]: https://github.com/perlang-org/perlang/pull/126
[133]: https://github.com/perlang-org/perlang/pull/133
[136]: https://github.com/perlang-org/perlang/pull/136
Expand Down
9 changes: 9 additions & 0 deletions release-notes/v0.1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## [0.1.1] - 2022-03-12

### Changed
- This release does not contain any breaking changes.

### Fixed
- Use a more correct approach for getting git commit [[#297][297]]

[297]: https://github.com/perlang-org/perlang/pull/297

0 comments on commit 70239a9

Please sign in to comment.