Skip to content

Commit 086ccf7

Browse files
committed
v3.0.1. See CHANGELOG.md for details.
1 parent 7067879 commit 086ccf7

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
### 3.0.1 / 2015-03-01
2+
3+
[full changelog](https://github.com/jedcn/reveal-ck/compare/v3.0.0...v3.0.1)
4+
5+
This release upgraded all dependencies to their latest, locked them at
6+
that version, and made slight tweaks to ensure that reveal-ck worked
7+
with them.
8+
9+
The version locking is based on the idea that bugs were coming up that
10+
were likely do to the range of libraries reveal-ck "could probably"
11+
work with (but it couldn't quite work with them), and the fact that
12+
there wasn't much benefit from trying to work with more than what we
13+
needed.
14+
15+
Guard was the "most difficult" upgrade because of how its API changed,
16+
so there may be some lurking issues.
17+
18+
It also dropped support for textile. This came in over 2 years ago,
19+
but, I've never heard of anyone using it (or being psyched know it was
20+
an option).
21+
122
### 3.0.0 / 2015-01-23
223

324
[full changelog](https://github.com/jedcn/reveal-ck/compare/v0.6.2...v3.0.0)

lib/reveal-ck/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# RevealCK::VERSION is the current version of reveal-ck
22
module RevealCK
3-
VERSION = '3.0.0'
3+
VERSION = '3.0.1'
44
end

reveal-ck.gemspec

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ $:.push File.expand_path('../lib', __FILE__)
33
require File.join([File.dirname(__FILE__),'lib','reveal-ck','version.rb'])
44

55
Gem::Specification.new do |s|
6+
# DON'T FORGET TO CHANGE ME!
7+
s.date = '2015-03-01'
68
s.required_ruby_version = '>= 2.0.0'
7-
89
s.name = 'reveal-ck'
910
s.version = RevealCK::VERSION
1011
s.platform = Gem::Platform::RUBY
@@ -65,13 +66,10 @@ Finally-- livereload is built in-- so it supports a nice flow where you keep a b
6566
s.test_files = `git ls-files -- {spec,features}/**/*`.split("\n")
6667
s.executables = ['reveal-ck']
6768
s.require_paths = ['lib']
68-
69-
s.date = '2015-01-23'
7069
s.extra_rdoc_files = [
7170
'LICENSE',
7271
'README.md'
7372
]
74-
7573
s.licenses = ['MIT']
7674
s.require_paths = ['lib']
7775
end

0 commit comments

Comments
 (0)