Skip to content

Commit 65f7053

Browse files
committed
Bump 0.2.0
1 parent a5c586d commit 65f7053

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog],
66
and this project adheres to [Semantic Versioning].
77

8-
## [Unreleased]
8+
## [0.2.0] - 2021-12-28
99

1010
### Added
1111

@@ -42,7 +42,6 @@ it { is_expected.to parse("Paco").as("Paco") } # checks if parser result is eq t
4242
it { is_expected.to parse("Paco").fully } # checks if parser result is the same as value passed to `#parse`
4343
```
4444

45-
4645
### Changed
4746

4847
- `Paco::Combinators.seq_map` merged into `Paco::Combinators.seq`. ([@skryukov])
@@ -54,15 +53,16 @@ it { is_expected.to parse("Paco").fully } # checks if parser result is the same
5453
- `include Paco` now works inside `irb`. ([@skryukov])
5554
- `Paco::Combinators#not_followed_by` and `Paco::Combinators#seq` now don't consume input on error. ([@skryukov])
5655

57-
## [0.1.0]
56+
## [0.1.0] - 2021-12-12
5857

5958
### Added
6059

6160
- Initial implementation. ([@skryukov])
6261

6362
[@skryukov]: https://github.com/skryukov
6463

65-
[Unreleased]: https://github.com/skryukov/paco/compare/v0.1.0...HEAD
64+
[Unreleased]: https://github.com/skryukov/paco/compare/v0.2.0...HEAD
65+
[0.2.0]: https://github.com/skryukov/paco/compare/v0.1.0...v0.2.0
6666
[0.1.0]: https://github.com/skryukov/paco/commits/v0.1.0
6767

6868
[Keep a Changelog]: https://keepachangelog.com/en/1.0.0/

lib/paco/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Paco
4-
VERSION = "0.1.0"
4+
VERSION = "0.2.0"
55
end

0 commit comments

Comments
 (0)