Skip to content

Commit

Permalink
Merge pull request #4 from mashiike/tagpr-from-v0.3.0
Browse files Browse the repository at this point in the history
Release for v0.4.0
  • Loading branch information
mashiike authored Mar 16, 2023
2 parents 902e3c0 + d191636 commit 0f49781
Show file tree
Hide file tree
Showing 3 changed files with 74 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 = -
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Changelog

## [v0.4.0](https://github.com/mashiike/mysqlbatch/compare/v0.3.0...v0.4.0) - 2023-03-16
- Feature/modernization by @mashiike in https://github.com/mashiike/mysqlbatch/pull/2
- Bump github.com/stretchr/testify from 1.4.0 to 1.8.2 by @dependabot in https://github.com/mashiike/mysqlbatch/pull/5
- Bump github.com/sergi/go-diff from 1.1.0 to 1.3.1 by @dependabot in https://github.com/mashiike/mysqlbatch/pull/3
- lambda runtime by @mashiike in https://github.com/mashiike/mysqlbatch/pull/6

## [v0.3.0](https://github.com/mashiike/mysqlbatch/compare/v0.2.2...v0.3.0) - 2021-11-10
- Feature/new with sql db by @mashiike in https://github.com/mashiike/mysqlbatch/pull/1

## [v0.2.2](https://github.com/mashiike/mysqlbatch/compare/v0.2.1...v0.2.2) - 2021-06-10

## [v0.2.1](https://github.com/mashiike/mysqlbatch/compare/v0.2.0...v0.2.1) - 2021-06-10

## [v0.2.0](https://github.com/mashiike/mysqlbatch/compare/v0.1.4...v0.2.0) - 2021-06-10

## [v0.1.4](https://github.com/mashiike/mysqlbatch/compare/v0.1.3...v0.1.4) - 2021-06-09

## [v0.1.3](https://github.com/mashiike/mysqlbatch/compare/v0.1.2...v0.1.3) - 2021-06-09

## [v0.1.2](https://github.com/mashiike/mysqlbatch/compare/v0.1.1...v0.1.2) - 2020-12-03

## [v0.1.1](https://github.com/mashiike/mysqlbatch/compare/v0.1.0...v0.1.1) - 2020-11-29

## [v0.1.0](https://github.com/mashiike/mysqlbatch/compare/v0.0.0...v0.1.0) - 2020-11-29

## [v0.0.0](https://github.com/mashiike/mysqlbatch/commits/v0.0.0) - 2020-02-27

0 comments on commit 0f49781

Please sign in to comment.