Skip to content

Commit 685778e

Browse files
authored
Merge pull request #61 from zweitag/prepare-0.2.0-release
Prepare 0.2.0 release
2 parents f0ea042 + 101136a commit 685778e

8 files changed

+19
-10
lines changed

CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.2.0] - 2020-08-05
10+
### Added
11+
- Support for Middleman 5 RC
812
### Changed
913
- We changed the way images get registered while running the Middleman server.
10-
This should bring way better performance and make this Gem usable in server mode.t
14+
This should bring way better performance and make this Gem usable in server mode.
1115

1216
## [0.1.0] - 2020-02-05
1317
### Added
@@ -31,5 +35,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3135
### Removed
3236
- Removed support for Ruby < 2.5
3337

34-
[Unreleased]: https://github.com/zweitag/middleman-images/compare/v0.1.0...HEAD
38+
[Unreleased]: https://github.com/zweitag/middleman-images/compare/v0.2.0...HEAD
39+
[0.2.0]: https://github.com/zweitag/middleman-images/compare/v0.1.0...v0.2.0
3540
[0.1.0]: https://github.com/zweitag/middleman-images/releases/tag/v0.1.0

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
middleman-images (0.1.0)
4+
middleman-images (0.2.0)
55
middleman-core (>= 4.1.14)
66

77
GEM

gemfiles/Gemfile.middleman-4.1.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
middleman-images (0.1.0)
4+
middleman-images (0.2.0)
55
middleman-core (>= 4.1.14)
66

77
GEM

gemfiles/Gemfile.middleman-4.2.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
middleman-images (0.1.0)
4+
middleman-images (0.2.0)
55
middleman-core (>= 4.1.14)
66

77
GEM

gemfiles/Gemfile.middleman-4.3.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
middleman-images (0.1.0)
4+
middleman-images (0.2.0)
55
middleman-core (>= 4.1.14)
66

77
GEM

gemfiles/Gemfile.middleman-5.0-rc.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
middleman-images (0.1.0)
4+
middleman-images (0.2.0)
55
middleman-core (>= 4.1.14)
66

77
GEM

lib/middleman-images/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module MiddlemanImages
2-
VERSION = "0.1.0"
2+
VERSION = "0.2.0"
33
end

middleman-images.gemspec

+6-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@ Gem::Specification.new do |s|
1111
s.email = ["ruben.grimm@zweitag.de", "julian.schneider@zweitag.de"]
1212
s.homepage = "https://www.github.com/zweitag/middleman-images"
1313
s.summary = "Resize and optimize images for Middleman"
14-
s.description = "Resize and optimize images for Middleman"
14+
s.description = "" "
15+
Resize and optimize your images on the fly with Middleman. Just run middleman build
16+
and all your images will get the minimizing treatment. Middleman Images currently
17+
depends on mini_magick for resizing and image_optim for optimizing your images.
18+
" ""
1519

1620
s.files = `git ls-files`.split("\n")
1721
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
1822
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
1923
s.require_paths = ["lib"]
2024
s.required_ruby_version = ">= 2.5.0"
2125

22-
s.add_runtime_dependency("middleman-core", [">= 4.1.14"])
26+
s.add_runtime_dependency("middleman-core", [">= 4.1.14", "< 5.1"])
2327
end

0 commit comments

Comments
 (0)