Skip to content

Commit 644c589

Browse files
committed
Merge branch 'pr-27'
2 parents e5728ad + 04f4da9 commit 644c589

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

.travis.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ script:
77
- rake install_gem
88
- pmdtester -h
99

10-
before_deploy: "rake hoe:spec"
10+
before_deploy:
11+
- git stash --all
12+
- rake hoe:spec
13+
1114
deploy:
1215
provider: rubygems
1316
api_key:
1417
secure: xcEpX/r7es6/jnvNPrVClVkKLemC+4EaFACfK9PCw05jAqf3sDX8UMKD2B4NU1JfF+I/szC5loyCe8s1wBUbFhelR8sL93RNOyVlQCKqaDTFw0DUvnbKWdgDb7POhcmo8SWi4aaKPias6wCuWA/Wc6jUvcrlAgKDsmYqOukXQoFyQbOUsnqrE/FMA7BfUIHkeeJbNk8807u4+aMqahZyzTFvuEVBUvKqCzDYPl9kpm4fzOtjxiExj1ic9dr2Dz5bcyWteMjZFSgjYWgZUXpk8FWCj5R/8VQsklxFFXFZlQIVwqtpaKgEOjwOOxaA6b8O7OeU82HtSPfxy6eCNE7pvzoYq+ZGxxk6fPbAl2mqKtPU76oRKH8YmXuEdDtdHVCYp7wOFdrLhJ6bJ3H/DSD14Kso21D3ktt4y4qkCd0Ev1a6nbY3LrO+NqFlZytwlYY1t8CUWyc9GfvpQXd7j0shSvrh2RU0+ATcQc0tRSHE2htjbiMWPi/ffMNe5h7iVqho5cLC4n187VrWOqGJf2S47spIgw9N3VWzyfAxAxI2XIvWcGoAIQhEgU6bH14Mz+0amG6ggzCBAbDPEC1j8cuwVkmanWCWZWi6EuRbCYZ7rgCFIx3hZS9NPBANfcXudm7eINvuMlFnmwrVzmtTIEZTy56ZfaWPzGxotyn5M9DdT1U=
1518
on:
1619
tags: true
20+
skip_cleanup: true
1721
gem: pmdtester
1822
gemspec: pmdtester.gemspec

History.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
# 1.0.0-SNAPSHOT / 2018-??-??
2-
3-
4-
# 1.0.0.beta1 / 2018-07-16
1+
# 1.0.0.beta2 / 2018-07-17
52

63
* First release of pmdtester
74

@@ -36,3 +33,4 @@ but might contains bugs.
3633
* [#24](https://github.com/pmd/pmd-regression-tester/pull/24): Adding a logging framework for PmdTester - [BBG](https://github.com/djydewang)
3734
* [#25](https://github.com/pmd/pmd-regression-tester/pull/25): Remove working directory substring from filename of pmd violation - [BBG](https://github.com/djydewang)
3835
* [#26](https://github.com/pmd/pmd-regression-tester/pull/26): Release pmdtester 1.0.0.beta1 - [BBG](https://github.com/djydewang)
36+
* [#27](https://github.com/pmd/pmd-regression-tester/pull/27): Release pmdtester 1.0.0.beta2 - [BBG](https://github.com/djydewang)

Rakefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ Hoe.plugin :git
1414
hoe = Hoe.spec 'pmdtester' do
1515
self.version = PmdTester::Options::VERSION
1616

17-
self.author = 'Binguo Bao'
18-
self.email = '[email protected]'
17+
developer 'Andreas Dangel', '[email protected]'
18+
developer 'Binguo Bao', '[email protected]'
19+
1920
self.clean_globs = %w[target/reports/**/* target/test/**/*]
2021
self.extra_deps += [['nokogiri', '~> 1.8.2'], ['slop', '~> 4.6.2']]
2122
self.extra_dev_deps += [

lib/pmdtester/parsers/options.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Options
1515
LOCAL = 'local'
1616
ONLINE = 'online'
1717
SINGLE = 'single'
18-
VERSION = '1.0.0-SNAPSHOT'
18+
VERSION = '1.0.0-beta2'
1919

2020
attr_reader :local_git_repo
2121
attr_reader :base_branch

0 commit comments

Comments
 (0)