Skip to content

Commit 75b6134

Browse files
Merge branch 'master' into release
2 parents 4909a74 + 6d44896 commit 75b6134

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

Jenkinsfile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,19 @@ def runtests(dockerImageVersion)
6969
}
7070

7171
node('words-linux') {
72-
stage('newruby'){
72+
stage('oldruby'){
7373
try {
7474
runtests("3.1")
7575
} finally {
7676
cleanWs()
7777
}
7878
}
79+
80+
stage('newruby'){
81+
try {
82+
runtests("3.4")
83+
} finally {
84+
cleanWs()
85+
}
86+
}
7987
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ To use Aspose Words for Cloud Ruby SDK you need to register an account with [Asp
397397
To install this package do the following:
398398
update your Gemfile
399399
```ruby
400-
gem 'aspose_words_cloud', '~> 25.8'
400+
gem 'aspose_words_cloud', '~> 25.9'
401401
```
402402
or install directly
403403
```bash

lib/aspose_words_cloud/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
# ------------------------------------------------------------------------------------
2525

2626
module AsposeWordsCloud
27-
VERSION = "25.8".freeze
27+
VERSION = "25.9".freeze
2828
end

0 commit comments

Comments
 (0)