Skip to content

Commit 6fd8c5a

Browse files
authored
Merge pull request #16 from hatena/tagpr-from-v1.0.1
Release for v1.0.2
2 parents 53964ee + 42474dc commit 6fd8c5a

File tree

3 files changed

+68
-0
lines changed

3 files changed

+68
-0
lines changed

.github/release.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- tagpr

.tagpr

+42
Original file line numberDiff line numberDiff line change
@@ -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 = -

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Changelog
2+
3+
## [v1.0.2](https://github.com/hatena/godash/compare/v1.0.1...v1.0.2) - 2023-10-15
4+
- Add GitHub Workflow for tagpr by @stefafafan in https://github.com/hatena/godash/pull/15
5+
6+
## [v1.0.1](https://github.com/hatena/godash/compare/v1.0.0...v1.0.1) - 2023-09-24
7+
- Update README.md with details on setup; fix flaky tests by @stefafafan in https://github.com/hatena/godash/pull/14
8+
9+
## [v1.0.0](https://github.com/hatena/godash/commits/v1.0.0) - 2023-09-24
10+
- add dependabot.yml by @stefafafan in https://github.com/hatena/godash/pull/1
11+
- add simple readme by @stefafafan in https://github.com/hatena/godash/pull/2
12+
- Add Uniq / UniqBy wrapper functions by @stefafafan in https://github.com/hatena/godash/pull/3
13+
- Rename repository/package name to godash by @stefafafan in https://github.com/hatena/godash/pull/4
14+
- Add a subset of slice related functions by @stefafafan in https://github.com/hatena/godash/pull/5
15+
- rename package name by @stefafafan in https://github.com/hatena/godash/pull/6
16+
- add more functions that would probably be used a bunch by @stefafafan in https://github.com/hatena/godash/pull/7
17+
- add simple documentation code, as well as a link to the package site by @stefafafan in https://github.com/hatena/godash/pull/8
18+
- nit adjustments to the package doc comments by @stefafafan in https://github.com/hatena/godash/pull/9
19+
- add some example tests along with simple CI by @stefafafan in https://github.com/hatena/godash/pull/10
20+
- add golangci-lint-action; other adjustments to the CI by @stefafafan in https://github.com/hatena/godash/pull/11
21+
- Add dependabot configuration for GitHub Actions by @stefafafan in https://github.com/hatena/godash/pull/12
22+
- Add example tests for the rest of the functions by @stefafafan in https://github.com/hatena/godash/pull/13

0 commit comments

Comments
 (0)