File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
10
### Fixed
11
11
### Removed
12
12
13
+ ## [ 1.0.5] - 2022-09-20 ([ tag] [ 1.0.5t ] )
14
+ ### Added
15
+ - SHA 256 Checksum for release (in addition to SHA 512) (@pboling )
16
+ - Aligned checksums directory name with ` rake build:checksum ` task
17
+
13
18
## [ 1.0.4] - 2022-09-19 ([ tag] [ 1.0.4t ] )
14
19
### Added
15
20
- Certificate for signing gem releases (@pboling )
16
21
- Gemspec metadata (@pboling )
17
22
- funding_uri
18
23
- mailing_list_uri
19
24
- Installation and usage documentation (@pboling )
20
- - Checksums for released gems (@pboling )
25
+ - SHA 512 Checksum for release (@pboling )
21
26
### Changed
22
27
- Gem releases are now cryptographically signed (@pboling )
23
28
Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ raise 'Too Many Gems' if gems.length > 1
8
8
9
9
built_gem_path = gems . first
10
10
checksum_512 = Digest ::SHA512 . new . hexdigest ( File . read ( built_gem_path ) )
11
- checksum_512_path = "checksum /#{ built_gem_path } .sha512"
11
+ checksum_512_path = "checksums /#{ built_gem_path } .sha512"
12
12
File . open ( checksum_512_path , 'w' ) { |f | f . write ( checksum_512 ) }
13
13
14
14
checksum_256 = Digest ::SHA256 . new . hexdigest ( File . read ( built_gem_path ) )
15
- checksum_256_path = "checksum /#{ built_gem_path } .sha256"
15
+ checksum_256_path = "checksums /#{ built_gem_path } .sha256"
16
16
File . open ( checksum_256_path , 'w' ) { |f | f . write ( checksum_256 ) }
17
17
18
18
puts "You must now git add and commit '#{ checksum_256_path } ' and '#{ checksum_512_path } '"
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments