Skip to content

Commit

Permalink
Merge pull request #18 from gqlgo/tagpr-from-v0.3.4
Browse files Browse the repository at this point in the history
Release for v0.3.5
  • Loading branch information
tenntenn committed Oct 17, 2022
2 parents ca76431 + f0e5ef1 commit 29136e0
Show file tree
Hide file tree
Showing 3 changed files with 75 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
35 changes: 35 additions & 0 deletions .tagpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# 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 pcpr 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.tmplate (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]
vPrefix = true
releaseBranch = main
versionFile = -
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Changelog

## [v0.3.5](https://github.com/gqlgo/gqlanalysis/compare/v0.3.4...v0.3.5) - 2022-10-17
- Add a tagpr workflow of GitHub Actions by @tenntenn in https://github.com/gqlgo/gqlanalysis/pull/17
- Fix dependencies handling by @tenntenn in https://github.com/gqlgo/gqlanalysis/pull/16

## [v0.3.4](https://github.com/gqlgo/gqlanalysis/compare/v0.3.3...v0.3.4) - 2022-09-16
- Support Go 1.19 by @sonatard in https://github.com/gqlgo/gqlanalysis/pull/15

## [v0.3.3](https://github.com/gqlgo/gqlanalysis/compare/v0.3.2...v0.3.3) - 2022-09-16
- Update modules by @sonatard in https://github.com/gqlgo/gqlanalysis/pull/14

## [v0.3.2](https://github.com/gqlgo/gqlanalysis/compare/v0.3.1...v0.3.2) - 2022-09-11
- Update mod by @sonatard in https://github.com/gqlgo/gqlanalysis/pull/11
- Add codegen package by @tenntenn in https://github.com/gqlgo/gqlanalysis/pull/7
- udpate version by @sonatard in https://github.com/gqlgo/gqlanalysis/pull/13

## [v0.3.1](https://github.com/gqlgo/gqlanalysis/compare/v0.3.0...v0.3.1) - 2022-09-04
- fix typo in diagnostic message by @syumai in https://github.com/gqlgo/gqlanalysis/pull/10
- Update qlgenc v0.0.10 by @sonatard in https://github.com/gqlgo/gqlanalysis/pull/12

## [v0.3.0](https://github.com/gqlgo/gqlanalysis/compare/v0.2.1...v0.3.0) - 2022-01-14
- Replace analysis to gqlanalysis by @tenntenn in https://github.com/gqlgo/gqlanalysis/pull/6
- Create cmd/gqlskeleton by @tenntenn in https://github.com/gqlgo/gqlanalysis/pull/8
- gqlskeleton: Fix bug and skeleton code by @tenntenn in https://github.com/gqlgo/gqlanalysis/pull/9

## [v0.2.1](https://github.com/gqlgo/gqlanalysis/compare/v0.2.0...v0.2.1) - 2021-04-08
- Add author and implementations by @tenntenn in https://github.com/gqlgo/gqlanalysis/pull/2
- fixed small error by @0xflotus in https://github.com/gqlgo/gqlanalysis/pull/5
- Exit with specified exitcode by @tenntenn in https://github.com/gqlgo/gqlanalysis/pull/3
- Add workflow by @tenntenn in https://github.com/gqlgo/gqlanalysis/pull/4

## [v0.2.0](https://github.com/gqlgo/gqlanalysis/compare/v0.1.0...v0.2.0) - 2021-04-07
- Remove fist program argument from multichecker by @tenntenn in https://github.com/gqlgo/gqlanalysis/pull/1

## [v0.1.0](https://github.com/gqlgo/gqlanalysis/commits/v0.1.0) - 2021-04-07

0 comments on commit 29136e0

Please sign in to comment.