hatenablog_publisher 0.4.0 → 0.4.1

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: a1364daffa9e55a7992d825f9a5271d4e44c274f3842e80782528c7c08973a95
4
- data.tar.gz: 473ad8b55534ac798bb4a21382163f9a4354bac1c7989d944d7f37d6ea388099
3
+ metadata.gz: 33d03e178b12968b49d1131c76d03927580cf516ddf922d82b0d6052047b9056
4
+ data.tar.gz: 1d1245b5733967e7c9aae579e1e8c008fc4292b6bc4d07b59e8fea8d9d5c8a6b
5
5
  SHA512:
6
- metadata.gz: fca83e8caac019c4ba2e2c63051e75128a662d604337b9625802c6a4e1c3b7261a4a3d1e0ba787ad542fd6e96784fbd5e051575a159f6b92d39b5239eb5ed964
7
- data.tar.gz: 198927a17848679627c2b40980fe35c51af934d1ea7af2e01b7a28c3143147808dda1c9dea4f434fb8c60f286ed5366420b94b13007064d32a15429bee4698cc
6
+ metadata.gz: 013b6465fa07c848c9bb60b4e93b9bf34bc068ef7f1d459e2d0ade0f44ad257a49a32a34d697b4c7c08016de38953cf921057881c473d9bdf711445687e5390f
7
+ data.tar.gz: de1d0cf44cbc46cfa541bd58d56619b9dad08b97e9bd8a6883a4aa2b62d74c22c3a99eec244e507c750563e9edcd35a85ce21ef2832be3df0748206458185a6c
@@ -0,0 +1,4 @@
1
+ changelog:
2
+ exclude:
3
+ labels:
4
+ - tagpr
@@ -42,7 +42,7 @@ jobs:
42
42
  name: 'rubocop'
43
43
  steps:
44
44
  - uses: actions/checkout@v3.3.0
45
- - uses: ruby/setup-ruby@v1.133.2
45
+ - uses: ruby/setup-ruby@v1.134.0
46
46
  with:
47
47
  ruby-version: .ruby-version
48
48
  - run: |
data/.tagpr ADDED
@@ -0,0 +1,42 @@
1
+ # config file for the tagpr in git config format
2
+ # The tagpr generates the initial configuration, which you can rewrite to suit your environment.
3
+ # CONFIGURATIONS:
4
+ # tagpr.releaseBranch
5
+ # Generally, it is "main." It is the branch for releases. The tagpr tracks this branch,
6
+ # creates or updates a pull request as a release candidate, or tags when they are merged.
7
+ #
8
+ # tagpr.versionFile
9
+ # Versioning file containing the semantic version needed to be updated at release.
10
+ # It will be synchronized with the "git tag".
11
+ # Often this is a meta-information file such as gemspec, setup.cfg, package.json, etc.
12
+ # Sometimes the source code file, such as version.go or Bar.pm, is used.
13
+ # If you do not want to use versioning files but only git tags, specify the "-" string here.
14
+ # You can specify multiple version files by comma separated strings.
15
+ #
16
+ # tagpr.vPrefix
17
+ # Flag whether or not v-prefix is added to semver when git tagging. (e.g. v1.2.3 if true)
18
+ # This is only a tagging convention, not how it is described in the version file.
19
+ #
20
+ # tagpr.changelog (Optional)
21
+ # Flag whether or not changelog is added or changed during the release.
22
+ #
23
+ # tagpr.command (Optional)
24
+ # Command to change files just before release.
25
+ #
26
+ # tagpr.template (Optional)
27
+ # Pull request template in go template format
28
+ #
29
+ # tagpr.release (Optional)
30
+ # GitHub Release creation behavior after tagging [true, draft, false]
31
+ # If this value is not set, the release is to be created.
32
+ #
33
+ # tagpr.majorLabels (Optional)
34
+ # Label of major update targets. Default is [major]
35
+ #
36
+ # tagpr.minorLabels (Optional)
37
+ # Label of minor update targets. Default is [minor]
38
+ #
39
+ [tagpr]
40
+ vPrefix = true
41
+ releaseBranch = master
42
+ versionFile = -
data/CHANGELOG.md ADDED
@@ -0,0 +1,93 @@
1
+ # Changelog
2
+
3
+ ## [v0.4.1](https://github.com/swfz/hatenablog_publisher/compare/v0.4.0...v0.4.1) - 2023-01-22
4
+ - chore(deps): update ruby/setup-ruby action to v1.134.0 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/107
5
+ - to v0.4.1 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/112
6
+
7
+ ## [v0.4.0](https://github.com/swfz/hatenablog_publisher/compare/v0.3.0...v0.4.0) - 2023-01-22
8
+ - chore: Move gem's dependencies. by @honyanya in https://github.com/swfz/hatenablog_publisher/pull/70
9
+ - Fix lint error by @ytkg in https://github.com/swfz/hatenablog_publisher/pull/71
10
+ - chore: Do not manage lock files by @honyanya in https://github.com/swfz/hatenablog_publisher/pull/72
11
+ - chore(deps): update dependency ruby to v3 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/67
12
+ - chore(deps): update actions/cache action to v3.0.3 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/73
13
+ - chore(deps): update actions/cache action to v3.0.4 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/75
14
+ - chore(deps): update actions/cache action to v3.0.5 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/77
15
+ - chore(deps): update actions/cache action to v3.0.7 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/79
16
+ - chore(deps): update actions/cache action to v3.0.8 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/82
17
+ - chore(deps): update actions/cache action to v3.0.10 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/84
18
+ - chore(deps): update actions/cache action to v3.0.11 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/88
19
+ - chore(deps): update actions/checkout action to v3.1.0 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/86
20
+ - #91 ruby-versionのファイルを指定する by @swfz in https://github.com/swfz/hatenablog_publisher/pull/92
21
+ - chore(deps): update ruby/setup-ruby action to v1.122.0 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/94
22
+ - chore(deps): update ruby/setup-ruby action to v1.124.0 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/95
23
+ - chore(deps): update ruby/setup-ruby action to v1.125.0 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/96
24
+ - chore(deps): bump actions/checkout from 3.1.0 to 3.2.0 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/99
25
+ - feat: add version 3.2 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/104
26
+ - chore(deps): update all dependencies by @renovate in https://github.com/swfz/hatenablog_publisher/pull/98
27
+ - fix: when not set category by @swfz in https://github.com/swfz/hatenablog_publisher/pull/108
28
+ - fix: 間違えてコミットしてしまった部分の削除 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/109
29
+ - カスタムパスへの対応 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/110
30
+
31
+ ## [v0.3.0](https://github.com/swfz/hatenablog_publisher/compare/v0.2.0...v0.3.0) - 2022-05-07
32
+ - chore(deps): bump actions/cache from v2.1.3 to v2.1.4 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/31
33
+ - chore(deps): update actions/cache action to v2.1.5 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/34
34
+ - chore(deps): bump oauth from 0.5.4 to 0.5.5 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/33
35
+ - chore(deps): update actions/cache action to v2.1.6 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/36
36
+ - chore(deps): bump actions/checkout from 2 to 2.3.4 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/35
37
+ - chore(deps): bump actions/checkout from 2.3.4 to 2.4.0 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/42
38
+ - chore(deps): update actions/cache action to v2.1.7 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/43
39
+ - chore(deps): update actions/cache action to v3 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/47
40
+ - chore(deps): update actions/checkout action to v3 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/45
41
+ - chore(deps): bump nokogiri from 1.10.9 to 1.13.4 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/52
42
+ - chore(deps): bump Gamesight/slack-workflow-status from 1.0.1 to 1.1.0 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/49
43
+ - chore(deps): update actions/cache action to v3.0.2 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/54
44
+ - chore(deps): bump rexml from 3.2.4 to 3.2.5 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/56
45
+ - chore(deps): bump actions/checkout from 2.4.0 to 3.0.1 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/53
46
+ - chore(deps): update actions/checkout action to v3.0.2 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/57
47
+ - feat: #58 2系のバージョンでテストを回す by @swfz in https://github.com/swfz/hatenablog_publisher/pull/60
48
+ - feat: use ruby-version by @swfz in https://github.com/swfz/hatenablog_publisher/pull/61
49
+ - feature/upgrade activesupport to 7 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/63
50
+ - chore(deps): update dependency ruby to v2.7.6 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/66
51
+ - feature/remove lockfile by @swfz in https://github.com/swfz/hatenablog_publisher/pull/68
52
+
53
+ ## [v0.2.0](https://github.com/swfz/hatenablog_publisher/compare/v0.1.4...v0.2.0) - 2020-12-28
54
+ - chore: ci badge by @swfz in https://github.com/swfz/hatenablog_publisher/pull/20
55
+ - chore(deps): bump sanitize from 5.1.0 to 5.2.1 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/21
56
+ - add codecov by @swfz in https://github.com/swfz/hatenablog_publisher/pull/22
57
+ - Feature/follow coverage by @swfz in https://github.com/swfz/hatenablog_publisher/pull/24
58
+ - chore: add codecov badge by @swfz in https://github.com/swfz/hatenablog_publisher/pull/23
59
+ - test: options by @swfz in https://github.com/swfz/hatenablog_publisher/pull/25
60
+ - chore(deps): bump actions/cache from v1 to v2.1.2 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/26
61
+ - chore(deps): bump actions/cache from v2.1.2 to v2.1.3 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/27
62
+ - chore(deps): update actions/cache action to v2.1.3 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/28
63
+ - feat: textlintでの除外コメントを投稿時には削除する by @swfz in https://github.com/swfz/hatenablog_publisher/pull/29
64
+ - fix: フォトライフのイメタグのタイプを変更 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/30
65
+
66
+ ## [v0.1.4](https://github.com/swfz/hatenablog_publisher/compare/v0.1.3...v0.1.4) - 2020-06-03
67
+ - chore(deps): bump activesupport from 6.0.3 to 6.0.3.1 by @dependabot in https://github.com/swfz/hatenablog_publisher/pull/18
68
+ - Feature/add exteanal image by @swfz in https://github.com/swfz/hatenablog_publisher/pull/19
69
+
70
+ ## [v0.1.3](https://github.com/swfz/hatenablog_publisher/compare/v0.1.2...v0.1.3) - 2020-05-22
71
+ - Configure Renovate by @renovate in https://github.com/swfz/hatenablog_publisher/pull/14
72
+ - chore(deps): update dependency rake to v13 by @renovate in https://github.com/swfz/hatenablog_publisher/pull/16
73
+ - 投稿時間を管理下に置く by @swfz in https://github.com/swfz/hatenablog_publisher/pull/17
74
+
75
+ ## [v0.1.2](https://github.com/swfz/hatenablog_publisher/compare/v0.1.1...v0.1.2) - 2020-05-21
76
+
77
+ ## [v0.1.1](https://github.com/swfz/hatenablog_publisher/compare/v0.1.0...v0.1.1) - 2020-05-21
78
+
79
+ ## [v0.1.0](https://github.com/swfz/hatenablog_publisher/commits/v0.1.0) - 2020-05-21
80
+ - CI by @swfz in https://github.com/swfz/hatenablog_publisher/pull/1
81
+ - rubocopの追加 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/2
82
+ - testケースの追加 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/3
83
+ - APIリクエスト前後のloggerを用意 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/4
84
+ - dos2unix by @swfz in https://github.com/swfz/hatenablog_publisher/pull/5
85
+ - fix: rubocop by @swfz in https://github.com/swfz/hatenablog_publisher/pull/6
86
+ - Feature/add testcase by @swfz in https://github.com/swfz/hatenablog_publisher/pull/7
87
+ - テストのリファクタ by @swfz in https://github.com/swfz/hatenablog_publisher/pull/8
88
+ - 記事下部への広告タグ挿入機能 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/9
89
+ - データ管理方法の追加 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/10
90
+ - 設定の外部ファイル化 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/11
91
+ - Feature/bugfix by @swfz in https://github.com/swfz/hatenablog_publisher/pull/12
92
+ - refactor by @swfz in https://github.com/swfz/hatenablog_publisher/pull/13
93
+ - 広告挿入機能のテストケース追加 by @swfz in https://github.com/swfz/hatenablog_publisher/pull/15
@@ -1,3 +1,3 @@
1
1
  module HatenablogPublisher
2
- VERSION = '0.4.0'.freeze
2
+ VERSION = '0.4.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hatenablog_publisher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - swfz
@@ -117,13 +117,16 @@ extensions: []
117
117
  extra_rdoc_files: []
118
118
  files:
119
119
  - ".github/dependabot.yml"
120
+ - ".github/release.yml"
120
121
  - ".github/workflows/ci.yml"
121
122
  - ".github/workflows/tagpr.yml"
122
123
  - ".gitignore"
123
124
  - ".rspec"
124
125
  - ".rubocop.yml"
125
126
  - ".ruby-version"
127
+ - ".tagpr"
126
128
  - ".travis.yml"
129
+ - CHANGELOG.md
127
130
  - CODE_OF_CONDUCT.md
128
131
  - Gemfile
129
132
  - LICENSE.txt