pinpress 1.2.1 → 1.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ae77f99f46a0971c0032f10131cbb16cc3c0ae7
4
- data.tar.gz: 8eddc0dc1ded71589b348fb1605deca5f2b3b00f
3
+ metadata.gz: 83ccc8144066f655e2b17a30f05ce1f9e0d3802a
4
+ data.tar.gz: bacd08125f3c4f14638598c40436605680966614
5
5
  SHA512:
6
- metadata.gz: 01127ec83ecfc6f1b72046c5d77ffa8594732d482650a80a89f1ed203fadfe05cba86f4fd2690baae900e808322a0599c0091b47fa93487969fcc583ef765ea6
7
- data.tar.gz: aa9c8f7a7bd32b6dfa127165c6b62adc2370e2ec5ce92f88ff92228c289e38d2df3d39cebe0cbb4f350ed93186762af4dd5f45a188cf18a815b998b6426501d8
6
+ metadata.gz: c0cad134fa4ee12431114767df32c935e2a936e642b1984d0d122201d8f9e2581346cdb6c7b18a50b846e4708e9f7fe4b2f8bd98135f0ab7bca59f045bc06802
7
+ data.tar.gz: 6551a7cb8d75cd7310110d1fe72c2a177c142a7bb01650c117f1e2483be6c25bd52ee25d4909b6effa3c83172ff65d9b35f210d9c79c1019ee06ed7beb9ec14d
data/HISTORY.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 1.2.2 (2014-04-29)
2
+
3
+ * Fixed a bug in which the configuration wouldn't update as expected
4
+
1
5
  # 1.2.1 (2014-04-29)
2
6
 
3
7
  * Added `pinpress pins last` functionality
data/README.md CHANGED
@@ -34,7 +34,7 @@ SYNOPSIS
34
34
  pinpress [global options] command [command options] [arguments...]
35
35
 
36
36
  VERSION
37
- 1.2.0
37
+ 1.2.2
38
38
 
39
39
  GLOBAL OPTIONS
40
40
  --help - Show this message
@@ -122,13 +122,11 @@ $ pinpress pins -t "ruby,cli"
122
122
 
123
123
  ## Getting Pins Created Since Last Run
124
124
 
125
- Every time you run `pinpress pins`, the current date is added to `~/.pinpress`. Because of this, running:
126
-
127
125
  ```bash
128
126
  $ pinpress pins last
129
127
  ```
130
128
 
131
- ...will get all the pins created since that date (e.g., if you'd last run `pinpress pins` on 2014-01-01, this command would return all pins created from 2014-01-02 onward).
129
+ ...will get all the pins created since you last ran that command (e.g., if you'd last run `pinpress pins` on 2014-01-01, this command would return all pins created from 2014-01-02 onward).
132
130
 
133
131
  # Getting Tags
134
132
 
@@ -178,13 +176,11 @@ $ pinpress tags -t 'tag1,tag2' -s 2014-01-01
178
176
 
179
177
  ## Getting Tags Used Since Last Run
180
178
 
181
- Every time you run `pinpress tags`, the current date is added to `~/.pinpress`. Because of this, running:
182
-
183
179
  ```bash
184
180
  $ pinpress tags last
185
181
  ```
186
182
 
187
- ...will get all the tags used since that date (e.g., if you'd last run `pinpress tags` on 2014-01-01, this command would return all tags used from 2014-01-02 onward).
183
+ ...will get all the tags used since you last ran the command (e.g., if you'd last run `pinpress tags` on 2014-01-01, this command would return all tags used from 2014-01-02 onward).
188
184
 
189
185
  # Templates
190
186
 
@@ -405,6 +401,8 @@ pinpress:
405
401
  log_level: WARN
406
402
  version: 1.1.1
407
403
  api_token: bachya:b819312cf9ccee799b87
404
+ last_pins_run: 2014-04-29
405
+ last_tags_run: 2014-04-29
408
406
  pin_templates:
409
407
  - name: pinpress_default
410
408
  opener: >
@@ -12,7 +12,7 @@ module PinPress
12
12
  pin and tag templates in almost any conceivable format.)
13
13
 
14
14
  # The last version to require a config update
15
- NEWEST_CONFIG_VERSION = '1.1.0'
15
+ NEWEST_CONFIG_VERSION = '1.2.1'
16
16
 
17
17
  # Hash of preference files
18
18
  PREF_FILES = {
@@ -28,5 +28,5 @@ module PinPress
28
28
  SUMMARY = 'A simple CLI to create HTML templates of Pinboard data.'
29
29
 
30
30
  # The Gem's version
31
- VERSION = '1.2.1'
31
+ VERSION = '1.2.2'
32
32
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pinpress
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Bach