Skip to content

Commit 542e6e3

Browse files
committed
Prepare for v1.4.1 release.
1 parent 6e2be6c commit 542e6e3

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ CHANGELOG
44
upcoming
55
--------
66

7+
v1.4.1 [21-SEP-2015]
8+
----------------------
9+
* [#191][] Add dynamic depth support for node attributes. Credit: [@stjohnjohnson][]
10+
711
v1.4.0 [08-JUN-2015]
812
----------------------
913
* [#161][] Fix job#build method when true/false values are passed as timeout parameter. Credit: [@jlucasps][]
@@ -326,6 +330,7 @@ v0.0.1 [15-OCT-2012]
326330
[#176]: https://github.com/arangamani/jenkins_api_client/issues/176
327331
[#177]: https://github.com/arangamani/jenkins_api_client/issues/177
328332
[#179]: https://github.com/arangamani/jenkins_api_client/issues/179
333+
[#191]: https://github.com/arangamani/jenkins_api_client/issues/191
329334
[@AndrewHanes]: https://github.com/AndrewHanes
330335
[@Loa]: https://github.com/Loa
331336
[@Niarfe]: https://github.com/Niarfe

jenkins_api_client.gemspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
# DO NOT EDIT THIS FILE DIRECTLY
33
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
44
# -*- encoding: utf-8 -*-
5-
# stub: jenkins_api_client 1.4.0 ruby lib
5+
# stub: jenkins_api_client 1.4.1 ruby lib
66

77
Gem::Specification.new do |s|
88
s.name = "jenkins_api_client"
9-
s.version = "1.4.0"
9+
s.version = "1.4.1"
1010

1111
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1212
s.require_paths = ["lib"]
1313
s.authors = ["Kannan Manickam"]
14-
s.date = "2015-06-09"
14+
s.date = "2015-09-21"
1515
s.description = "\nThis is a simple and easy-to-use Jenkins Api client with features focused on\nautomating Job configuration programaticaly and so forth"
1616
s.email = ["[email protected]"]
1717
s.executables = ["jenkinscli"]
@@ -90,7 +90,7 @@ Gem::Specification.new do |s|
9090
]
9191
s.homepage = "https://github.com/arangamani/jenkins_api_client"
9292
s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
93-
s.rubygems_version = "2.2.2"
93+
s.rubygems_version = "2.2.3"
9494
s.summary = "Jenkins JSON API Client"
9595

9696
if s.respond_to? :specification_version then

lib/jenkins_api_client/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Client
2727
# Minor version of the gem
2828
MINOR = 4
2929
# Tiny version of the gem used for patches
30-
TINY = 0
30+
TINY = 1
3131
# Used for pre-releases
3232
PRE = nil
3333
# Version String of Jenkins API Client.

0 commit comments

Comments
 (0)