Hello community,

here is the log from the commit of package rubygem-unicode-display_width for 
openSUSE:Factory checked in at 2020-05-11 13:40:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-unicode-display_width (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-unicode-display_width.new.2738 
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-unicode-display_width"

Mon May 11 13:40:16 2020 rev:3 rq:802386 version:1.7.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/rubygem-unicode-display_width/rubygem-unicode-display_width.changes
      2020-03-07 21:40:42.180371991 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-unicode-display_width.new.2738/rubygem-unicode-display_width.changes
    2020-05-11 13:40:20.848991350 +0200
@@ -1,0 +2,10 @@
+Thu May  7 21:39:28 UTC 2020 - Stephan Kulow <[email protected]>
+
+- updated to version 1.7.0
+ see installed CHANGELOG.md
+
+  ## 1.7.0
+  
+  - Unicode 13
+
+-------------------------------------------------------------------

Old:
----
  unicode-display_width-1.6.1.gem

New:
----
  unicode-display_width-1.7.0.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-unicode-display_width.spec ++++++
--- /var/tmp/diff_new_pack.KLLd2w/_old  2020-05-11 13:40:21.836993447 +0200
+++ /var/tmp/diff_new_pack.KLLd2w/_new  2020-05-11 13:40:21.840993456 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-unicode-display_width
-Version:        1.6.1
+Version:        1.7.0
 Release:        0
 %define mod_name unicode-display_width
 %define mod_full_name %{mod_name}-%{version}
@@ -40,7 +40,7 @@
 Group:          Development/Languages/Ruby
 
 %description
-[Unicode 12.1.0] Determines the monospace display width of a string using
+[Unicode 13.0.0] Determines the monospace display width of a string using
 EastAsianWidth.txt, Unicode general category, and other data.
 
 %prep

++++++ unicode-display_width-1.6.1.gem -> unicode-display_width-1.7.0.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md    2020-01-16 13:48:49.000000000 +0100
+++ new/CHANGELOG.md    2020-03-11 14:34:04.000000000 +0100
@@ -1,5 +1,9 @@
 # CHANGELOG
 
+## 1.7.0
+
+- Unicode 13
+
 ## 1.6.1
 
 - Fix that ambiguous and overwrite options where ignored for emoji-measuring
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md       2020-01-16 13:48:49.000000000 +0100
+++ new/README.md       2020-03-11 14:34:04.000000000 +0100
@@ -2,7 +2,7 @@
 
 Determines the monospace display width of a string in Ruby. Implementation 
based on 
[EastAsianWidth.txt](https://www.unicode.org/Public/UNIDATA/EastAsianWidth.txt) 
and other data, 100% in Ruby. Other than 
[wcwidth()](https://github.com/janlelis/wcswidth-ruby), which fulfills a 
similar purpose, it does not rely on the OS vendor to provide an up-to-date 
method for measuring string width.
 
-Unicode version: **12.1.0** (May 2019)
+Unicode version: **13.0.0** (March 2020)
 
 Supported Rubies: **2.7**, **2.6**, **2.5**, **2.4**
 
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
Binary files old/data/display_width.marshal.gz and 
new/data/display_width.marshal.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/unicode/display_width/constants.rb 
new/lib/unicode/display_width/constants.rb
--- old/lib/unicode/display_width/constants.rb  2020-01-16 13:48:49.000000000 
+0100
+++ new/lib/unicode/display_width/constants.rb  2020-03-11 14:34:04.000000000 
+0100
@@ -1,7 +1,7 @@
 module Unicode
   module DisplayWidth
-    VERSION = '1.6.1'
-    UNICODE_VERSION = "12.1.0".freeze
+    VERSION = '1.7.0'
+    UNICODE_VERSION = "13.0.0".freeze
     DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + 
'/../../../data/').freeze
     INDEX_FILENAME = (DATA_DIRECTORY + '/display_width.marshal.gz').freeze
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2020-01-16 13:48:49.000000000 +0100
+++ new/metadata        2020-03-11 14:34:04.000000000 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: unicode-display_width
 version: !ruby/object:Gem::Version
-  version: 1.6.1
+  version: 1.7.0
 platform: ruby
 authors:
 - Jan Lelis
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2020-01-16 00:00:00.000000000 Z
+date: 2020-03-11 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: rspec
@@ -38,7 +38,7 @@
     - - "~>"
       - !ruby/object:Gem::Version
         version: '10.4'
-description: "[Unicode 12.1.0] Determines the monospace display width of a 
string
+description: "[Unicode 13.0.0] Determines the monospace display width of a 
string
   using EastAsianWidth.txt, Unicode general category, and other data."
 email:
 - [email protected]
@@ -80,7 +80,7 @@
     - !ruby/object:Gem::Version
       version: '0'
 requirements: []
-rubygems_version: 3.0.6
+rubygems_version: 3.1.2
 signing_key: 
 specification_version: 4
 summary: Determines the monospace display width of a string in Ruby.


Reply via email to