Skip to content

Commit c237642

Browse files
committed
Version 2.0
* Updated engine to [Handlebars::Engine](https://github.com/gi/handlebars-ruby). * Updated build/deploy to GitHub Actions: - test against macos-latest and ubuntu-latest - test against tilt 1.x and 2.x - test against ruby 2.6, 2.7, 3.0, and 3.1 - test coverage - lint * Updated specs/tests to [RSpec](https://rspec.info/). * Updated readme/documentation.
1 parent bb0f899 commit c237642

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

RELEASE_NOTES.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Tilt Handlebars Release Notes
22
=============================
33

4+
Version 2.0
5+
-----------
6+
* Updated engine to [Handlebars::Engine](https://github.com/gi/handlebars-ruby).
7+
* Updated build/deploy to GitHub Actions:
8+
- test against macos-latest and ubuntu-latest
9+
- test against tilt 1.x and 2.x
10+
- test against ruby 2.6, 2.7, 3.0, and 3.1
11+
- test coverage
12+
- lint
13+
* Updated specs/tests to [RSpec](https://rspec.info/).
14+
* Updated readme/documentation.
15+
416
Version 1.4
517
-----------
618
* Updated to Tilt 2.0. It should still work with Tilt 1.3.
@@ -19,8 +31,8 @@ Version 1.3.0
1931

2032
* Uses Handlebars.js 1.3.0, and handlebars.rb 0.6.0.
2133

22-
Note: Tilt Handlebars currently uses Tilt 1.4.x, because Sinatra is not yet
23-
compatible with Tilt 2.0. Once Sinatra is updated for Tilt 2.0, I'll release a
34+
Note: Tilt Handlebars currently uses Tilt 1.4.x, because Sinatra is not yet
35+
compatible with Tilt 2.0. Once Sinatra is updated for Tilt 2.0, I'll release a
2436
new version of tilt-handlebars. Alternatively, I could break out Sinatra support
2537
into a separate gem. If you use Tilt and Tilt Handlebars without Sinatra, and
2638
Tilt 2.0 support is important to you, please file an issue to let me know.
@@ -30,13 +42,13 @@ Version 1.2.0
3042
-------------
3143
2013 September 30
3244

33-
This version is recommend for all users, as it brings support for the release
45+
This version is recommend for all users, as it brings support for the release
3446
version of Handlebars.
3547

3648
* Updates to handlebars.rb 0.5.0, which brings with it the 1.0.0 release
3749
version version of the JavaScript Handlebars, and an updated Ruby Racer
3850
(Ruby-JavaScript bridge). Thanks to [Yehuda Katz](https://github.com/wycats)
39-
and [Charles Lowell](https://github.com/cowboyd) for their continued work on
51+
and [Charles Lowell](https://github.com/cowboyd) for their continued work on
4052
Handlebars and Handlebars.rb, respectively.
4153

4254
* Backwards compatibility note: If you are using automatic partials loading with

bin/version

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
dir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd)"
44
root="$(cd "${dir}/.." && pwd)"
55

6-
file="${root}/lib/handlebars/engine/version.rb"
6+
file="${root}/lib/tilt/handlebars/version.rb"
77

88
current() {
9-
ruby -r "${file}" -e 'puts Handlebars::Engine::VERSION'
9+
ruby -r "${file}" -e 'puts Tilt::Handlebars::VERSION'
1010
}
1111

1212
update() {

lib/tilt/handlebars/version.rb

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

33
module Tilt
44
module Handlebars
5-
VERSION = "1.4.0"
5+
VERSION = "2.0.0"
66
end
77
end

0 commit comments

Comments
 (0)