Skip to content

Commit ce00e94

Browse files
authored
Merge pull request #124 from ruby-docx/release-v0.7.0
Release v0.7.0
2 parents 6074216 + ee246e5 commit ce00e94

4 files changed

Lines changed: 15 additions & 4 deletions

File tree

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
ruby: [2.5, 2.6, 2.7, "3.0", 3.1]
20+
ruby: [2.6, 2.7, "3.0", 3.1]
2121

2222
steps:
2323
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
# Changelog
22

3+
## v0.7.0
4+
5+
### Enhancements
6+
7+
- Adds to_xml to Document [#116](https://github.com/ruby-docx/docx/pull/116)
8+
- fix runs text not changed after update [#120](https://github.com/ruby-docx/docx/pull/120)
9+
310
### Bug fixes
411

512
- Passing a Nokogiri::XML::Node as the second parameter to Node.new is deprecated [#121](https://github.com/ruby-docx/docx/pull/121)
613

14+
### Chores
15+
16+
- Add Ruby 3.1 to the CI matrix by petergoldstein [#122](https://github.com/ruby-docx/docx/pull/122)
17+
718
## v0.6.2
819

920
### Bug fixes

docx.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Gem::Specification.new do |s|
1111
s.email = ['chrahunt@gmail.com']
1212
s.homepage = 'https://github.com/chrahunt/docx'
1313
s.files = Dir['README.md', 'LICENSE.md', 'lib/**/*.rb']
14-
s.required_ruby_version = '>= 2.5.0'
14+
s.required_ruby_version = '>= 2.6.0'
1515

16-
s.add_dependency 'nokogiri', '~> 1.12', '>= 1.12.5'
16+
s.add_dependency 'nokogiri', '~> 1.13', '>= 1.13.0'
1717
s.add_dependency 'rubyzip', '~> 2.0'
1818

1919
s.add_development_dependency 'coveralls_reborn', '~> 0.21'

lib/docx/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Docx #:nodoc:
4-
VERSION = '0.6.2'
4+
VERSION = '0.6.3'
55
end

0 commit comments

Comments
 (0)