Skip to content

Commit 9dc52ab

Browse files
committed
Bump to v1.0.0
1 parent 7d29e6e commit 9dc52ab

File tree

4 files changed

+30
-6
lines changed

4 files changed

+30
-6
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [1.0.0] - 2022-03-31
10+
11+
### Changed
12+
13+
- Hook into Syntax Tree 2.0.0 to provide CLI support.
14+
15+
## [0.1.0] - 2022-03-31
16+
17+
### Added
18+
19+
- 🎉 Initial release! 🎉
20+
21+
[unreleased]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/v1.0.0...HEAD
22+
[1.0.0]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/v0.1.0...v1.0.0
23+
[0.1.0]: https://github.com/ruby-syntax-tree/syntax_tree-haml/compare/c1264c...v0.1.0

Gemfile.lock

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
syntax_tree-haml (0.1.0)
4+
syntax_tree-haml (1.0.0)
55
haml (>= 5.2)
66
syntax_tree (>= 2.0)
77

@@ -26,6 +26,7 @@ GEM
2626

2727
PLATFORMS
2828
x86_64-darwin-21
29+
x86_64-linux
2930

3031
DEPENDENCIES
3132
bundler
@@ -35,4 +36,4 @@ DEPENDENCIES
3536
syntax_tree-haml!
3637

3738
BUNDLED WITH
38-
2.4.0.dev
39+
2.3.6

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,21 +35,21 @@ puts SyntaxTree::Haml.format(source) # format the AST
3535
From the CLI:
3636

3737
```sh
38-
$ stree ast template.haml
38+
$ stree ast --plugins=haml template.haml
3939
(root children=[(tag name="span" value="Hello, world!")])
4040
```
4141

4242
or
4343

4444
```sh
45-
$ stree format template.haml
45+
$ stree format --plugins=haml template.haml
4646
%span Hello, world!
4747
```
4848

4949
or
5050

5151
```sh
52-
$ stree write template.haml
52+
$ stree write --plugins=haml template.haml
5353
template.haml 1ms
5454
```
5555

lib/syntax_tree/haml/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module SyntaxTree
44
module Haml
5-
VERSION = "0.1.0"
5+
VERSION = "1.0.0"
66
end
77
end

0 commit comments

Comments
 (0)