Skip to content

Commit 17243eb

Browse files
committed
Prepare release 1.1.0
1 parent 712e89e commit 17243eb

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

History.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 1.1.0-SNAPSHOT / 2020-??-??
1+
# 1.1.0 / 2020-12-05
22

33
## New and Noteworthy
44

README.rdoc

+8-3
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,11 @@ The tool creates the following folders:
143143

144144
* Update +History.md+ (version and date)
145145
* Update +lib/pmdtester.rb+ (version)
146-
* Commit ("Prepare release x.y.z"), tag, push. Travis will build and publish the new gem.
147-
* Update History.md and lib/pmdtester.rb for the next development version
148-
("Prepare next development version x.y.z-SNAPSHOT").
146+
* Run "bundle exec rake verify" and add new +pmdtester.gemspec+ (new version)
147+
* Commit ("Prepare release x.y.z").
148+
* Tag this commit ("git tag vx.y.z").
149+
* Update History.md and lib/pmdtester.rb for the next development version,
150+
run again "bundle exec rake verify"
151+
* Commit ("Prepare next development version x.y.z-SNAPSHOT").
152+
* Push to master.
153+
* Push the tag. Github Actions will build and publish the new gem

lib/pmdtester.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# and unexpected behaviors will not be introduced to PMD project
3333
# after fixing an issue and new rules can work as expected.
3434
module PmdTester
35-
VERSION = '1.1.0-SNAPSHOT'
35+
VERSION = '1.1.0'
3636
BASE = 'base'
3737
PATCH = 'patch'
3838
PR_NUM_ENV_VAR = 'PMD_CI_PULL_REQUEST_NUMBER' # see PmdBranchDetail

pmdtester.gemspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# DO NOT EDIT THIS FILE. Instead, edit Rakefile, and run `rake hoe:spec`.
22

33
# -*- encoding: utf-8 -*-
4-
# stub: pmdtester 1.1.0.pre.SNAPSHOT ruby lib
4+
# stub: pmdtester 1.1.0 ruby lib
55

66
Gem::Specification.new do |s|
77
s.name = "pmdtester".freeze
8-
s.version = "1.1.0.pre.SNAPSHOT"
8+
s.version = "1.1.0"
99

10-
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1".freeze) if s.respond_to? :required_rubygems_version=
10+
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
1111
s.metadata = { "bug_tracker_uri" => "https://github.com/pmd/pmd-regression-tester/issues", "homepage_uri" => "https://pmd.github.io", "source_code_uri" => "https://github.com/pmd/pmd-regression-tester" } if s.respond_to? :metadata=
1212
s.require_paths = ["lib".freeze]
1313
s.authors = ["Andreas Dangel".freeze, "Binguo Bao".freeze, "Cl\u00E9ment Fournier".freeze]

0 commit comments

Comments
 (0)