komeda 0.1.4 → 0.1.5
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/.tagpr +42 -0
- data/CHANGELOG.md +6 -14
- data/config/menus.yaml +1 -1
- data/lib/komeda/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 338623a248d5136c63614221a7822649bdd355ae0f852ad6dae4bc7ed9591a41
|
|
4
|
+
data.tar.gz: cf135663f027350ca5820a7a2a7bece6a1b6c22f14e63db5a37cf89408f5b91f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d02734e30b7b150f37dfad0186434c32749955d91ecdca0a05571595e6ba679e52c62bfcda41ad160b3d0e892647ee4650b59ae6a788e2085630eb6612846b4
|
|
7
|
+
data.tar.gz: 318a10866ed9c051497eb4e637f90d0ec02b8dbe61d046acd993685683f6d6d319f798ceae54f4262d649a13292b97560fbb3f70984c1e3831797ae99a455152
|
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 = main
|
|
42
|
+
versionFile = lib/komeda/version.rb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,16 @@
|
|
|
1
|
-
##
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
## v0.1.4
|
|
5
|
-
[full changelog](http://github.com/ytkg/komeda/compare/v0.1.3...v0.1.4)
|
|
1
|
+
## [v0.1.5](https://github.com/ytkg/komeda/compare/v0.1.4...v0.1.5) - 2024-02-06
|
|
2
|
+
- Update menu data by @github-actions in https://github.com/ytkg/komeda/pull/16
|
|
6
3
|
|
|
4
|
+
## [v0.1.4](https://github.com/ytkg/komeda/compare/v0.1.3...v0.1.4)
|
|
7
5
|
- Update menu data (https://github.com/ytkg/komeda/pull/13)
|
|
8
6
|
|
|
9
|
-
## v0.1.3
|
|
10
|
-
[full changelog](http://github.com/ytkg/komeda/compare/v0.1.2...v0.1.3)
|
|
11
|
-
|
|
7
|
+
## [v0.1.3](http://github.com/ytkg/komeda/compare/v0.1.2...v0.1.3)
|
|
12
8
|
- Fix menus file path (https://github.com/ytkg/komeda/pull/12)
|
|
13
9
|
|
|
14
|
-
## v0.1.2
|
|
15
|
-
[full changelog](http://github.com/ytkg/komeda/compare/v0.1.1...v0.1.2)
|
|
16
|
-
|
|
10
|
+
## [v0.1.2](http://github.com/ytkg/komeda/compare/v0.1.1...v0.1.2)
|
|
17
11
|
- Update menu data (https://github.com/ytkg/komeda/pull/11)
|
|
18
12
|
|
|
19
|
-
## v0.1.1
|
|
20
|
-
[full changelog](http://github.com/ytkg/komeda/compare/v0.1.0...v0.1.1)
|
|
13
|
+
## [v0.1.1](http://github.com/ytkg/komeda/compare/v0.1.0...v0.1.1)
|
|
21
14
|
|
|
22
15
|
## v0.1.0
|
|
23
|
-
|
|
24
16
|
- Initial release
|
data/config/menus.yaml
CHANGED
data/lib/komeda/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: komeda
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yoshiki Takagi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-02-
|
|
11
|
+
date: 2024-02-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -61,6 +61,7 @@ extra_rdoc_files: []
|
|
|
61
61
|
files:
|
|
62
62
|
- ".rspec"
|
|
63
63
|
- ".rubocop.yml"
|
|
64
|
+
- ".tagpr"
|
|
64
65
|
- CHANGELOG.md
|
|
65
66
|
- CODE_OF_CONDUCT.md
|
|
66
67
|
- Gemfile
|
|
@@ -97,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
97
98
|
- !ruby/object:Gem::Version
|
|
98
99
|
version: '0'
|
|
99
100
|
requirements: []
|
|
100
|
-
rubygems_version: 3.3
|
|
101
|
+
rubygems_version: 3.5.3
|
|
101
102
|
signing_key:
|
|
102
103
|
specification_version: 4
|
|
103
104
|
summary: Komeda's coffee menu data
|