valkyrie 2.0.0.RC8 → 2.0.0.RC9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/valkyrie/specs/shared_specs/storage_adapter.rb +1 -1
- data/lib/valkyrie/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c96ae6a548480b0e75af468816f1a7fc968d79c6572c738f5d06de3ce6a06d2
|
4
|
+
data.tar.gz: f539f0893d3c0f5d86f75b7f8b53b593c5d8de184f6e41ba18da0320fa31c0dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44123f8e88d3a1e6336cd942235cf27231684c1f5970323818fa8a66141138555c3adf9c5587879212664a3dc7cc5c75dc3d4be4c745df236b02e1857cc1a26c
|
7
|
+
data.tar.gz: d417d2506a62da8364e24d94ecb398137a7f6e1e534eb57f447bed8886c8b5119eea08f6aebebd2df2ca1b48aca968d469b4c3b146239b5b40bfc173be2db27f
|
data/CHANGELOG.md
CHANGED
@@ -70,6 +70,18 @@ involved for their contributions in the last year:
|
|
70
70
|
[stkenny](https://github.com/stkenny)
|
71
71
|
[tpendragon](https://github.com/tpendragon)
|
72
72
|
|
73
|
+
# v1.7.1 2019-05-30
|
74
|
+
|
75
|
+
## Changes since last release
|
76
|
+
|
77
|
+
* Fix ROOT_PATH error in StorageAdapter#upload shared specs
|
78
|
+
[tpendragon](https://github.com/tpendragon)
|
79
|
+
|
80
|
+
Additional thanks to the following for code review and issue reports leading to
|
81
|
+
this release:
|
82
|
+
|
83
|
+
[escowles](https://github.com/escowles)
|
84
|
+
|
73
85
|
# v1.7.0 2019-05-29
|
74
86
|
|
75
87
|
## Changes since last release
|
@@ -19,7 +19,7 @@ RSpec.shared_examples 'a Valkyrie::StorageAdapter' do
|
|
19
19
|
|
20
20
|
it "can upload a file which is just an IO" do
|
21
21
|
io_file = Tempfile.new('temp_io')
|
22
|
-
io_file.write
|
22
|
+
io_file.write "Stuff"
|
23
23
|
io_file.rewind
|
24
24
|
sha1 = Digest::SHA1.file(io_file).to_s
|
25
25
|
|
data/lib/valkyrie/version.rb
CHANGED