Skip to content

Commit

Permalink
Prepare 21.0.0 (#50)
Browse files Browse the repository at this point in the history
fix #49
  • Loading branch information
kou committed Apr 3, 2023
1 parent 302bbdf commit d9edff5
Show file tree
Hide file tree
Showing 11 changed files with 48 additions and 18 deletions.
3 changes: 2 additions & 1 deletion dev/release/prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,6 @@ popd

pushd "${source_dir}/package"
rake version:update
git add .
git add apt/debian/
git add yum/*.spec.in
popd
11 changes: 3 additions & 8 deletions dev/release/rat_exclude_files.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,7 @@ dev/release/rat_exclude_files.txt
doc/source/_static/switcher.json
package/debian/compat
package/debian/control
package/debian/gir1.2-datafusion-10.0.install
package/debian/libdatafusion-dev.install
package/debian/libdatafusion-glib-dev.install
package/debian/libdatafusion-glib-doc.doc-base
package/debian/libdatafusion-glib-doc.install
package/debian/libdatafusion-glib-doc.links
package/debian/libdatafusion-glib10.install
package/debian/libdatafusion10.install
package/debian/*.doc-base
package/debian/*.install
package/debian/*.links
package/debian/rules
3 changes: 2 additions & 1 deletion doc/meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2022 Sutou Kouhei <kou@clear-code.com>
# Copyright 2022-2023 Sutou Kouhei <kou@clear-code.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -29,6 +29,7 @@ depend_files = files(
'source' / 'install.rst',
'source' / 'introduction.rst',
'source' / 'news' / '10.0.0.md',
'source' / 'news' / '21.0.0.md',
'source' / 'news.rst',
'source' / 'raw-c-api.rst',
)
Expand Down
3 changes: 2 additions & 1 deletion doc/source/news.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. Copyright 2022 Sutou Kouhei <kou@clear-code.com>
.. Copyright 2022-2023 Sutou Kouhei <kou@clear-code.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -16,4 +16,5 @@ News

.. toctree::

news/21.0.0
news/10.0.0
23 changes: 23 additions & 0 deletions doc/source/news/21.0.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!--
Copyright 2023 Sutou Kouhei <kou@clear-code.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

# 21.0.0 - 2023-04-03

## Improvements

- #37: Upgraded based Apache DataFusion to 21.0.0.

- #46: Added support for writing a data frame as Apache Parquet format.
6 changes: 6 additions & 0 deletions package/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
datafusion-c (21.0.0-1) unstable; urgency=low

* New upstream release.

-- Sutou Kouhei <kou@clear-code.com> Mon, 03 Apr 2023 05:42:13 -0000

datafusion-c (10.0.0-1) unstable; urgency=low

* New upstream release.
Expand Down
14 changes: 7 additions & 7 deletions package/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Build-Depends-Indep:
Standards-Version: 4.1.4.1
Homepage: https://github.com/datafusion-contrib/datafusion-c

Package: libdatafusion10
Package: libdatafusion21
Section: libs
Architecture: any
Multi-Arch: same
Expand All @@ -36,25 +36,25 @@ Architecture: any
Multi-Arch: same
Depends:
${misc:Depends},
libdatafusion10 (= ${binary:Version})
libdatafusion21 (= ${binary:Version})
Description: DataFusion C is C API for DataFusion
.
This package provides C header files.

Package: libdatafusion-glib10
Package: libdatafusion-glib21
Section: libs
Architecture: any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends:
${misc:Depends},
${shlibs:Depends},
libdatafusion10 (= ${binary:Version})
libdatafusion21 (= ${binary:Version})
Description: DataFusion GLib is GLib API for DataFusion
.
This package provides GLib based library files.

Package: gir1.2-datafusion-10.0
Package: gir1.2-datafusion-21.0
Section: introspection
Architecture: any
Multi-Arch: same
Expand All @@ -71,10 +71,10 @@ Architecture: any
Multi-Arch: same
Depends:
${misc:Depends},
gir1.2-datafusion-10.0 (= ${binary:Version}),
gir1.2-datafusion-21.0 (= ${binary:Version}),
libarrow-glib-dev,
libdatafusion-dev (= ${binary:Version}),
libdatafusion-glib10 (= ${binary:Version})
libdatafusion-glib21 (= ${binary:Version})
Suggests: libdatafusion-glib-doc
Description: DataFusion GLib is GLib API for DataFusion
.
Expand Down
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions package/yum/datafusion-c.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -168,5 +168,8 @@ Examples for DataFusion GLib.
%{_datadir}/datafusion-glib/example/

%changelog
* Mon Apr 03 2023 Sutou Kouhei <kou@clear-code.com> - 21.0.0-1
- New upstream release.

* Mon Aug 22 2022 Sutou Kouhei <kou@clear-code.com> - 10.0.0-1
- New upstream release.

0 comments on commit d9edff5

Please sign in to comment.