Skip to content

Commit 9002ae7

Browse files
committed
Increment version
1 parent ada16cc commit 9002ae7

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66

77
## [Unreleased]
88

9+
## [2.0.0] - 2022-10-18
10+
911
### Added
1012

1113
- Support for Ruby 2.7.0, not just 2.7.3
14+
- Require syntax_tree 4.0.1 or higher.
15+
- Require prettier_print 1.0.0 or higher.
16+
17+
### Changed
18+
19+
- Nodes must now be formatted with a `SyntaxTree::Haml::Formatter`.
1220

1321
## [1.3.2] - 2022-09-19
1422

@@ -64,7 +72,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
6472

6573
- 🎉 Initial release! 🎉
6674

67-
[unreleased]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/v1.3.2...HEAD
75+
[unreleased]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/v2.0.0...HEAD
76+
[2.0.0]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/v1.3.2...v2.0.0
6877
[1.3.2]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/v1.3.1...v1.3.2
6978
[1.3.1]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/v1.3.0...v1.3.1
7079
[1.3.0]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/v1.2.1...v1.3.0

Gemfile.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
syntax_tree-haml (1.3.3)
4+
syntax_tree-haml (2.0.0)
55
haml (>= 5.2, != 6.0.0)
66
prettier_print (>= 1.0.0)
77
syntax_tree (>= 4.0.0)
@@ -15,16 +15,16 @@ GEM
1515
thor
1616
tilt
1717
minitest (5.16.3)
18-
prettier_print (1.0.0)
18+
prettier_print (1.0.1)
1919
rake (13.0.6)
2020
simplecov (0.21.2)
2121
docile (~> 1.1)
2222
simplecov-html (~> 0.11)
2323
simplecov_json_formatter (~> 0.1)
2424
simplecov-html (0.12.3)
2525
simplecov_json_formatter (0.1.4)
26-
syntax_tree (4.0.0)
27-
prettier_print (>= 1.0.0)
26+
syntax_tree (4.0.1)
27+
prettier_print (>= 1.0.1)
2828
temple (0.8.2)
2929
thor (1.2.1)
3030
tilt (2.0.11)

lib/syntax_tree/haml/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module SyntaxTree
44
module Haml
5-
VERSION = "1.3.3"
5+
VERSION = "2.0.0"
66
end
77
end

0 commit comments

Comments
 (0)