nhkore 0.3.9 → 0.3.10
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -1
- data/Gemfile.lock +5 -5
- data/README.md +17 -11
- data/lib/nhkore/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8fd13f6cd3ad8e69daa44f5318515d5efe104c13a90a755c617cfd53302c4b50
|
|
4
|
+
data.tar.gz: 9ec8ea4b9a9f4f9862fb81611cf99b3bafdb20a6a35038fcc3d14cc934cbcdfc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 72b94a39a10e9e6dcfd74e032f45c679fee961f1f6c6f09a229720db07896566400983e83dd5a9a496f13ea3554c8be3ee2a80da6883ee44109c4bca917e14d4
|
|
7
|
+
data.tar.gz: 7a6a23790df9c138de0a1944d2f6146cba697303dc30a57eccba2f6b71342254afa67296cdfa70dae88e2aa78ccba5a401d2b8996b7b64b3a28460811b0283f7
|
data/CHANGELOG.md
CHANGED
|
@@ -5,10 +5,16 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
Format is based on [Keep a Changelog v1.0.0](https://keepachangelog.com/en/1.0.0),
|
|
6
6
|
and this project adheres to [Semantic Versioning v2.0.0](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [[Unreleased]](https://github.com/esotericpig/nhkore/compare/v0.3.
|
|
8
|
+
## [[Unreleased]](https://github.com/esotericpig/nhkore/compare/v0.3.10...HEAD)
|
|
9
9
|
-
|
|
10
10
|
|
|
11
11
|
|
|
12
|
+
## [v0.3.10] - 2021-07-13
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Updated `public_suffix` gem, which has a dependency on `addressable` gem vulnerability found by *Dependabot*.
|
|
16
|
+
|
|
17
|
+
|
|
12
18
|
## [v0.3.9] - 2021-06-26
|
|
13
19
|
|
|
14
20
|
### Fixed
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
nhkore (0.3.
|
|
4
|
+
nhkore (0.3.10)
|
|
5
5
|
attr_bool (~> 0.2)
|
|
6
6
|
bimyou_segmenter (~> 1.2)
|
|
7
7
|
cri (~> 2.15)
|
|
@@ -21,7 +21,7 @@ PATH
|
|
|
21
21
|
GEM
|
|
22
22
|
remote: https://rubygems.org/
|
|
23
23
|
specs:
|
|
24
|
-
addressable (2.
|
|
24
|
+
addressable (2.8.0)
|
|
25
25
|
public_suffix (>= 2.0.2, < 5.0)
|
|
26
26
|
attr_bool (0.2.2)
|
|
27
27
|
bimyou_segmenter (1.2.0)
|
|
@@ -45,12 +45,12 @@ GEM
|
|
|
45
45
|
public_suffix (4.0.6)
|
|
46
46
|
racc (1.5.2)
|
|
47
47
|
rainbow (3.0.0)
|
|
48
|
-
rake (13.0.
|
|
48
|
+
rake (13.0.6)
|
|
49
49
|
raketeer (0.2.13)
|
|
50
50
|
rake
|
|
51
|
-
rdoc (6.3.
|
|
51
|
+
rdoc (6.3.2)
|
|
52
52
|
redcarpet (3.5.1)
|
|
53
|
-
rubyzip (2.3.
|
|
53
|
+
rubyzip (2.3.2)
|
|
54
54
|
strings-ansi (0.2.0)
|
|
55
55
|
tiny_segmenter (0.0.6)
|
|
56
56
|
tty-cursor (0.7.1)
|
data/README.md
CHANGED
|
@@ -858,17 +858,23 @@ This will update *core/* for you:
|
|
|
858
858
|
|
|
859
859
|
### Releasing [^](#contents)
|
|
860
860
|
|
|
861
|
-
1. Update *CHANGELOG.md*, *version.rb*, & *Gemfile.lock
|
|
862
|
-
- *Raketary*:
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
861
|
+
1. Update *CHANGELOG.md*, *version.rb*, & *Gemfile.lock*:
|
|
862
|
+
- With *Raketary*:
|
|
863
|
+
- `$ raketary bump -v`
|
|
864
|
+
- `$ raketary bump -p`
|
|
865
|
+
- `$ bundle update`
|
|
866
|
+
- `$ bundle outdated`
|
|
867
|
+
2. Update *core* package:
|
|
868
|
+
- `$ bundle exec rake update_core`
|
|
869
|
+
- `$ bundle exec rake clobber pkg_core`
|
|
870
|
+
3. Create a new tag & release:
|
|
871
|
+
- Note: make sure to add *pkg/nhkore-core.zip*
|
|
872
|
+
- `$ gh release create v0 pkg/*.gem pkg/*.zip`
|
|
873
|
+
- `$ git pull`
|
|
874
|
+
4. Release to *GitHub Packages*:
|
|
875
|
+
- With *Raketary*: `$ raketary github_pkg`
|
|
876
|
+
5. Release to *RubyGems*:
|
|
877
|
+
- `$ bundle exec rake release`
|
|
872
878
|
|
|
873
879
|
Releasing new HTML file for website:
|
|
874
880
|
|
data/lib/nhkore/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nhkore
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonathan Bradley Whited
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-07-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: attr_bool
|
|
@@ -398,7 +398,7 @@ metadata:
|
|
|
398
398
|
changelog_uri: https://github.com/esotericpig/nhkore/blob/master/CHANGELOG.md
|
|
399
399
|
post_install_message: |2+
|
|
400
400
|
|
|
401
|
-
NHKore v0.3.
|
|
401
|
+
NHKore v0.3.10
|
|
402
402
|
|
|
403
403
|
You can now use [nhkore] on the command line.
|
|
404
404
|
|
|
@@ -413,7 +413,7 @@ rdoc_options:
|
|
|
413
413
|
- "--hyperlink-all"
|
|
414
414
|
- "--show-hash"
|
|
415
415
|
- "--title"
|
|
416
|
-
- NHKore v0.3.
|
|
416
|
+
- NHKore v0.3.10 Doc
|
|
417
417
|
- "--main"
|
|
418
418
|
- README.md
|
|
419
419
|
require_paths:
|