Mercurial > hg > monetdb-ruby
changeset 17:6abcfcdb4924
Updated version number and copyright year.
author | Sjoerd Mullender <sjoerd@acm.org> |
---|---|
date | Tue, 03 Dec 2019 14:35:42 +0100 (2019-12-03) |
parents | 83db5acbd01a |
children | 8bf57d01c887 |
files | Makefile debian/changelog debian/control debian/copyright lib/MonetDB.rb lib/MonetDBConnection.rb lib/MonetDBData.rb lib/MonetDBExceptions.rb lib/example.rb lib/hasher.rb monetdb-sql.gemspec rubygem-monetdb-sql.spec |
diffstat | 12 files changed, 23 insertions(+), 14 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 1.1 +VERSION = 1.2 monetdb-sql-$(VERSION).gem: monetdb-sql.gemspec \ lib/MonetDB.rb lib/MonetDBConnection.rb \
--- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +ruby-monetdb-sql (1.2) unstable; urgency=low + + * Look for column names starting with '%' symbol at parse_header_table. + + -- Pedro Ferreira <pedro.ferreira@monetdbsolutions.com> Tue, 03 Dec 2019 14:12:22 +0100 + ruby-monetdb-sql (1.1) unstable; urgency=low * Fixed the blocksize in the Mapi protocol.
--- a/debian/control +++ b/debian/control @@ -5,8 +5,8 @@ Maintainer: MonetDB BV <info@monetdb.org Build-Depends: debhelper (>= 9~), gem2deb Standards-Version: 3.9.6 -Vcs-Hg: http://dev.monetdb.org/hg/monetdb-ruby/ -Vcs-Browser: http://dev.monetdb.org/hg/monetdb-ruby/ +Vcs-Hg: https://dev.monetdb.org/hg/monetdb-ruby/ +Vcs-Browser: https://dev.monetdb.org/hg/monetdb-ruby/ Homepage: https://www.monetdb.org/ Testsuite: autopkgtest-pkg-ruby XS-Ruby-Versions: all
--- a/debian/copyright +++ b/debian/copyright @@ -4,10 +4,10 @@ Upstream-Contact: info@monetdb.org Source: http://dev.monetdb.org/downloads/ Files: * -Copyright: 2017 MonetDB B.V. +Copyright: 2019 MonetDB B.V. License: MPL-2.0 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. . - Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. + Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V.
--- a/lib/MonetDB.rb +++ b/lib/MonetDB.rb @@ -2,7 +2,7 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # -# Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. +# Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V. # = Introduction #
--- a/lib/MonetDBConnection.rb +++ b/lib/MonetDBConnection.rb @@ -2,7 +2,7 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # -# Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. +# Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V. # Implements the MAPI communication protocol
--- a/lib/MonetDBData.rb +++ b/lib/MonetDBData.rb @@ -2,7 +2,7 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # -# Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. +# Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V. # Models a MonetDB RecordSet require 'time'
--- a/lib/MonetDBExceptions.rb +++ b/lib/MonetDBExceptions.rb @@ -2,7 +2,7 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # -# Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. +# Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V. # Exception classes for the ruby-monetdb driver
--- a/lib/example.rb +++ b/lib/example.rb @@ -2,7 +2,7 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # -# Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. +# Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V. require_relative 'MonetDB'
--- a/lib/hasher.rb +++ b/lib/hasher.rb @@ -2,7 +2,7 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # -# Copyright 1997 - July 2008 CWI, August 2008 - 2017 MonetDB B.V. +# Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V. require 'digest/md5' require 'digest/sha1'
--- a/monetdb-sql.gemspec +++ b/monetdb-sql.gemspec @@ -2,8 +2,8 @@ Gem::Specification.new do |s| s.required_ruby_version = '>= 1.8.0' s.name = %q{monetdb-sql} - s.version = "1.1" - s.date = %q{2019-08-19} + s.version = "1.2" + s.date = %q{2019-12-03} s.authors = ["G Modena", "R Koopmanschap"] s.email = "info@monetdb.org" s.license = "MPL-2.0"
--- a/rubygem-monetdb-sql.spec +++ b/rubygem-monetdb-sql.spec @@ -2,7 +2,7 @@ Name: rubygem-%{gem_name} Epoch: 1 -Version: 1.1 +Version: 1.2 Release: 1%{?dist} Summary: Pure Ruby database driver for MonetDB/SQL Group: Applications/Databases @@ -66,6 +66,9 @@ find %{buildroot}%{gem_instdir} -name \* %changelog +* Tue Dec 3 2019 Pedro Ferreira <pedro.ferreira@monetdbsolutions.com> - 1:1.2-1 +- Look for column names starting with '%' symbol at parse_header_table. + * Mon Aug 19 2019 Sjoerd Mullender <sjoerd@acm.org> - 1:1.1-1 - Fixed the blocksize in the Mapi protocol.