chmd 1.1 → 1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae69ce36a33ad9e161ed09ddd000f6032bfbb3cc749af00c18499f4ece00b01b
4
- data.tar.gz: e4b67e558130f2c9cb3d14779574e19063f4420f4a1b15fe2d8cebed6e0538b5
3
+ metadata.gz: ada4849409c71846e145c78782f5addf7d006056d940cb4eba2d4dfd457d0f9e
4
+ data.tar.gz: aa71138fbf5f83eb7bfd483e7c743c14a5e1371265fef6890b46e80d764f1091
5
5
  SHA512:
6
- metadata.gz: d7a08dd3388b094ffc5cb7570c889757bd3e5effbca81f407750d065db786d4f3c8e24994b95d3fea4cfad6e7016720afe304acd0de7ee30d87efacec983552f
7
- data.tar.gz: b63b2f9f0d338f742be0053a81b9703505793d87ef07009a8a11fe635a6ea71ee774cbc4d092579975631491fb041b5a746f14b0542a1392e8a11bd969c1c6cd
6
+ metadata.gz: cbf6edd97545a02ea5d2f74109b5435f06ca1f36957c1c2d516beed91fa313c57c082db233fdf6fe49ae82467c23f912a90e98e127188701cf8555a4561f89f0
7
+ data.tar.gz: 29fa6aaf464b0c17ea6c5fe3484bc0eda8a60587f74d0aa86e87f67f853b32029385565ffe5489998ea0e4d2a154a44c5b8d110583583f6bfc50aef5a5a0cc2c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,15 @@
1
1
  # Changelog
2
2
 
3
- ## [v1.0](https://github.com/eggplants/chmd/releases/tag/v1.0) - 2021-08-10 02:39:47 ([compare](https://github.com/eggplants/chmd/compare/v0.2...v1.0))
3
+ ## [v1.1](https://github.com/eggplants/chmd/releases/tag/v1.1) - 2021-08-10 03:07:39 ([compare](https://github.com/eggplants/chmd/compare/v1.0...v1.1))
4
+
5
+ - [d06d998842e14631a7b8287308013ff23728b47b](https://github.com/eggplants/chmd/commit/d06d998842e14631a7b8287308013ff23728b47b)
6
+ - fix: error message
7
+ - [99c52614e4d822859660168559a12c63b2c94430](https://github.com/eggplants/chmd/commit/99c52614e4d822859660168559a12c63b2c94430)
8
+ - add: badge
9
+ - [9176795d475b1f0f06e82dadec42c8484a3deafb](https://github.com/eggplants/chmd/commit/9176795d475b1f0f06e82dadec42c8484a3deafb)
10
+ - fix: README
11
+
12
+ ## [v1.0](https://github.com/eggplants/chmd/releases/tag/v1.0) - 2021-08-10 02:41:04 ([compare](https://github.com/eggplants/chmd/compare/v0.2...v1.0))
4
13
 
5
14
  - [47908579895ebbed0202f57083de72703ed9b82a](https://github.com/eggplants/chmd/commit/47908579895ebbed0202f57083de72703ed9b82a)
6
15
  - fix: ci syntax
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- chmd (1.1)
4
+ chmd (1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # `chmd`
2
2
 
3
- ![Gem](https://img.shields.io/gem/v/chmd)
3
+ [![Gem](https://img.shields.io/gem/v/chmd?color=%23dc3519)](https://rubygems.org/gems/chmd)
4
4
 
5
- - Make CHANGELOG.md from git log and tags of repositorywhich origin exists on github.
5
+ - CHANGELOG.md generator specializing in github repo
6
6
 
7
7
  ## Syntax
8
8
 
@@ -35,10 +35,13 @@ gem install chmd
35
35
 
36
36
  ```txt
37
37
  $ chmd
38
- # Changelog
38
+ ```
39
39
 
40
- ...(output)...
40
+ ![scs01](img/scs01.png)
41
41
 
42
+ - And output to CHANGELOG.md
43
+
44
+ ```txt
42
45
  $ chmd > CHANGELOG.md
43
46
  ```
44
47
 
data/chmd.gemspec CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.version = Chmd::VERSION
10
10
  spec.authors = ['eggplants']
11
11
  spec.email = ['w10776e8w@yahoo.co.jp']
12
- spec.summary = 'Make CHANGELOG.md from git log and tags.'
13
- spec.description = 'Make CHANGELOG.md from git log and tags of repositorywhich origin exists on github.'
12
+ spec.summary = 'CHANGELOG.md generator specializing in GitHub repo.'
13
+ spec.description = 'Make CHANGELOG.md from git log and tags of repository which origin exists on GitHub.'
14
14
  spec.homepage = 'https://github.com/eggplants/chmd'
15
15
  spec.license = 'MIT'
16
16
 
data/img/scs01.png ADDED
Binary file
data/lib/chmd/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Chmd
4
- VERSION = '1.1'
4
+ VERSION = '1.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chmd
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.1'
4
+ version: '1.2'
5
5
  platform: ruby
6
6
  authors:
7
7
  - eggplants
@@ -38,8 +38,8 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: Make CHANGELOG.md from git log and tags of repositorywhich origin exists
42
- on github.
41
+ description: Make CHANGELOG.md from git log and tags of repository which origin exists
42
+ on GitHub.
43
43
  email:
44
44
  - w10776e8w@yahoo.co.jp
45
45
  executables:
@@ -61,6 +61,7 @@ files:
61
61
  - bin/console
62
62
  - bin/setup
63
63
  - chmd.gemspec
64
+ - img/scs01.png
64
65
  - lib/chmd.rb
65
66
  - lib/chmd/version.rb
66
67
  - spec/chmd_spec.rb
@@ -92,7 +93,7 @@ requirements: []
92
93
  rubygems_version: 3.2.22
93
94
  signing_key:
94
95
  specification_version: 4
95
- summary: Make CHANGELOG.md from git log and tags.
96
+ summary: CHANGELOG.md generator specializing in GitHub repo.
96
97
  test_files:
97
98
  - spec/chmd_spec.rb
98
99
  - spec/make_spec.rb