Skip to content

Commit

Permalink
Merge pull request #10 from ellreka/tagpr-from-v1.0.4
Browse files Browse the repository at this point in the history
Release for v1.0.5
  • Loading branch information
ellreka authored Oct 7, 2022
2 parents b12ecf8 + 51529ff commit 15b5142
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 2 deletions.
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 = package.json,public/manifest.json
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changelog

## [v1.0.5](https://github.com/ellreka/gather-auto-teleport/compare/v1.0.4...v1.0.5) - 2022-09-22
### Changed
- ci: add tagpr by @ellreka in https://github.com/ellreka/gather-auto-teleport/pull/9

## [v1.0.4](https://github.com/ellreka/gather-auto-teleport/compare/v1.0.3...v1.0.4) - 2022-07-18
### Fixed
- fix: fixed a bug that prevented setting 0 for hour. by @ellreka in https://github.com/ellreka/gather-auto-teleport/pull/7
### Added
- Notify when an error occurs by @ellreka in https://github.com/ellreka/gather-auto-teleport/pull/5
### Changed
- Chore/update build ci by @ellreka in https://github.com/ellreka/gather-auto-teleport/pull/6

## [v1.0.3](https://github.com/ellreka/gather-auto-teleport/compare/v1.0.2...v1.0.3) - 2022-07-13
### Changed
- v1.0.2 by @ellreka in https://github.com/ellreka/gather-auto-teleport/pull/2
- Release v1.0.3 by @ellreka in https://github.com/ellreka/gather-auto-teleport/pull/4

## [v1.0.2](https://github.com/ellreka/gather-auto-teleport/commits/v1.0.2) - 2022-06-30
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gather-auto-teleport",
"version": "1.0.4",
"version": "1.0.5",
"main": "index.js",
"author": "ellreka",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Gather Auto Teleport",
"version": "1.0.4",
"version": "1.0.5",
"description": "Automatic teleportation extension for gather.town.",
"background": {
"service_worker": "background.js"
Expand Down

0 comments on commit 15b5142

Please sign in to comment.