Skip to content

Commit

Permalink
Merge pull request #16 from hatena/tagpr-from-v1.0.1
Browse files Browse the repository at this point in the history
Release for v1.0.2
  • Loading branch information
stefafafan authored Oct 15, 2023
2 parents 53964ee + 42474dc commit 6fd8c5a
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
changelog:
exclude:
labels:
- tagpr
42 changes: 42 additions & 0 deletions .tagpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# config file for the tagpr in git config format
# The tagpr generates the initial configuration, which you can rewrite to suit your environment.
# CONFIGURATIONS:
# tagpr.releaseBranch
# Generally, it is "main." It is the branch for releases. The tagpr tracks this branch,
# creates or updates a pull request as a release candidate, or tags when they are merged.
#
# tagpr.versionFile
# Versioning file containing the semantic version needed to be updated at release.
# It will be synchronized with the "git tag".
# Often this is a meta-information file such as gemspec, setup.cfg, package.json, etc.
# Sometimes the source code file, such as version.go or Bar.pm, is used.
# If you do not want to use versioning files but only git tags, specify the "-" string here.
# You can specify multiple version files by comma separated strings.
#
# tagpr.vPrefix
# Flag whether or not v-prefix is added to semver when git tagging. (e.g. v1.2.3 if true)
# This is only a tagging convention, not how it is described in the version file.
#
# tagpr.changelog (Optional)
# Flag whether or not changelog is added or changed during the release.
#
# tagpr.command (Optional)
# Command to change files just before release.
#
# tagpr.template (Optional)
# Pull request template in go template format
#
# tagpr.release (Optional)
# GitHub Release creation behavior after tagging [true, draft, false]
# If this value is not set, the release is to be created.
#
# tagpr.majorLabels (Optional)
# Label of major update targets. Default is [major]
#
# tagpr.minorLabels (Optional)
# Label of minor update targets. Default is [minor]
#
[tagpr]
vPrefix = true
releaseBranch = main
versionFile = -
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changelog

## [v1.0.2](https://github.com/hatena/godash/compare/v1.0.1...v1.0.2) - 2023-10-15
- Add GitHub Workflow for tagpr by @stefafafan in https://github.com/hatena/godash/pull/15

## [v1.0.1](https://github.com/hatena/godash/compare/v1.0.0...v1.0.1) - 2023-09-24
- Update README.md with details on setup; fix flaky tests by @stefafafan in https://github.com/hatena/godash/pull/14

## [v1.0.0](https://github.com/hatena/godash/commits/v1.0.0) - 2023-09-24
- add dependabot.yml by @stefafafan in https://github.com/hatena/godash/pull/1
- add simple readme by @stefafafan in https://github.com/hatena/godash/pull/2
- Add Uniq / UniqBy wrapper functions by @stefafafan in https://github.com/hatena/godash/pull/3
- Rename repository/package name to godash by @stefafafan in https://github.com/hatena/godash/pull/4
- Add a subset of slice related functions by @stefafafan in https://github.com/hatena/godash/pull/5
- rename package name by @stefafafan in https://github.com/hatena/godash/pull/6
- add more functions that would probably be used a bunch by @stefafafan in https://github.com/hatena/godash/pull/7
- add simple documentation code, as well as a link to the package site by @stefafafan in https://github.com/hatena/godash/pull/8
- nit adjustments to the package doc comments by @stefafafan in https://github.com/hatena/godash/pull/9
- add some example tests along with simple CI by @stefafafan in https://github.com/hatena/godash/pull/10
- add golangci-lint-action; other adjustments to the CI by @stefafafan in https://github.com/hatena/godash/pull/11
- Add dependabot configuration for GitHub Actions by @stefafafan in https://github.com/hatena/godash/pull/12
- Add example tests for the rest of the functions by @stefafafan in https://github.com/hatena/godash/pull/13

0 comments on commit 6fd8c5a

Please sign in to comment.