Skip to content

Commit 39e4c34

Browse files
brendonsimi
authored andcommitted
Version 4.0.0
Changelog and Readme updated
1 parent e217844 commit 39e4c34

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# CHANGELOG
22

3+
### 4.0.0 - 2018-08-24
4+
5+
* The import scanner now takes into account multiple [import options](http://lesscss.org/features/#import-atrules-feature-import-options).
6+
* Removed Tilt and Grease as dependencies.
7+
* **Breaking Change**: If you are requiring your less files using the extension, e.g:
8+
`*= require semantic_ui/definitions/modules/accordion.less`
9+
you need to remove the extension like so:
10+
`*= require semantic_ui/definitions/modules/accordion`
11+
312
### 3.0.0 - 2017-10-02
413

514
* Solve deprecation warning via Grease adapter!

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This gem provides integration for Rails projects using the Less stylesheet langu
1010
Just bundle up less-rails in your Gemfile. This will pull in less as a runtime dependency too.
1111

1212
```ruby
13-
gem 'less-rails', '~> 3.0.0'
13+
gem 'less-rails', '~> 4.0.0'
1414
```
1515

1616
But be warned, less.rb relies on a JavaScript runtime gem too. Just like ExecJS, it will look for a gem that is appropriate to your system. Typically, this means you will need one of the following.
@@ -125,7 +125,7 @@ We also have a generator for rails scaffold CSS. Just like the Sass gem, we simp
125125

126126
## Contributing
127127

128-
This gem is fully tested from Rails 4.0 to Rails 5.1. We run our tests on [Travis CI](http://travis-ci.org/metaskills/less-rails) in both Ruby 1.9, 2.0, and JRuby 9000. If you detect a problem, open up a github issue or fork the repo and help out. After you fork or clone the repository, the following commands will get you up and running on the test suite.
128+
This gem is fully tested from Rails 4.0 to Rails 5.1. We run our tests on [Travis CI](http://travis-ci.org/metaskills/less-rails) in both Ruby 1.9, 2.x, and JRuby 9000. If you detect a problem, open up a github issue or fork the repo and help out. After you fork or clone the repository, the following commands will get you up and running on the test suite.
129129

130130
```shell
131131
$ bundle

lib/less/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Less
22
module Rails
3-
VERSION = "3.0.0"
3+
VERSION = "4.0.0.rc1"
44
end
55
end

0 commit comments

Comments
 (0)