dnote 1.6.0 → 1.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/.ruby +1 -1
  2. data/HISTORY.rdoc +12 -0
  3. data/lib/dnote/session.rb +1 -1
  4. metadata +3 -3
data/.ruby CHANGED
@@ -35,7 +35,7 @@ requires:
35
35
  name: reap
36
36
  version: 0+
37
37
  manifest: MANIFEST
38
- version: 1.6.0
38
+ version: 1.6.1
39
39
  licenses: []
40
40
 
41
41
  copyright: Copyright (c) 2009 Thomas Sawyer
@@ -1,5 +1,17 @@
1
1
  = RELEASE HISTORY
2
2
 
3
+
4
+ == 1.6.1 / 2011-05-18
5
+
6
+ Last release reused the `-c` option for context lines. This clobbered
7
+ the shortcut option for `--custom`. To fix this release capitalizes
8
+ the shortcut to `-C`.
9
+
10
+ Changes:
11
+
12
+ * Capitalize custom shortcut option (-c becomes -C).
13
+
14
+
3
15
  == 1.6.0 / 2011-05-17
4
16
 
5
17
  This release adds code conext output. Select the number of
@@ -171,7 +171,7 @@ module DNote
171
171
  session.format = format
172
172
  end
173
173
 
174
- opt.on("--custom", "-c FILE", "use a custom ERB template") do |file|
174
+ opt.on("--custom", "-C FILE", "use a custom ERB template") do |file|
175
175
  session.format = 'custom'
176
176
  session.template = file
177
177
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dnote
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
4
+ hash: 13
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 6
9
- - 0
10
- version: 1.6.0
9
+ - 1
10
+ version: 1.6.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Thomas Sawyer