Skip to content

Commit 18f1e65

Browse files
committedMar 9, 2023
Bump to version 4.0.2
1 parent 4bc184a commit 18f1e65

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed
 

‎.github/workflows/main.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
name: Main
2+
23
on:
34
push:
45
branches:
56
- main
67
pull_request: {}
8+
79
jobs:
810
ci:
911
strategy:
@@ -14,10 +16,9 @@ jobs:
1416
- '2.7.5'
1517
- '3.0'
1618
- '3.1'
19+
- '3.2'
1720
name: CI
1821
runs-on: ubuntu-latest
19-
env:
20-
CI: true
2122
steps:
2223
- uses: actions/checkout@v3
2324
- uses: ruby/setup-ruby@v1

‎CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [4.0.2] - 2023-03-09
10+
11+
### Changed
12+
13+
- Require `prettier_print` `1.2.1` or higher to fix the infinite loop bug.
14+
- Maintain blank lines in nested nodes.
15+
916
## [4.0.1] - 2023-03-07
1017

1118
### Changed
@@ -93,7 +100,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
93100

94101
- 🎉 Initial release! 🎉
95102

96-
[unreleased]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/v4.0.1...HEAD
103+
[unreleased]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/v4.0.2...HEAD
104+
[4.0.2]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/v4.0.1...v4.0.2
97105
[4.0.1]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/v4.0.0...v4.0.1
98106
[4.0.0]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/v3.0.0...v4.0.0
99107
[3.0.0]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/v2.0.0...v3.0.0

‎Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
syntax_tree-haml (4.0.1)
4+
syntax_tree-haml (4.0.2)
55
haml (>= 5.2)
66
prettier_print (>= 1.2.1)
77
syntax_tree (>= 6.0.0)

‎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 = "4.0.1"
5+
VERSION = "4.0.2"
66
end
77
end

0 commit comments

Comments
 (0)
Please sign in to comment.