Skip to content

Commit d9edff5

Browse files
authored
Prepare 21.0.0 (#50)
fix #49
1 parent 302bbdf commit d9edff5

11 files changed

Lines changed: 48 additions & 18 deletions

File tree

dev/release/prepare.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,6 @@ popd
8383

8484
pushd "${source_dir}/package"
8585
rake version:update
86-
git add .
86+
git add apt/debian/
87+
git add yum/*.spec.in
8788
popd

dev/release/rat_exclude_files.txt

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,7 @@ dev/release/rat_exclude_files.txt
22
doc/source/_static/switcher.json
33
package/debian/compat
44
package/debian/control
5-
package/debian/gir1.2-datafusion-10.0.install
6-
package/debian/libdatafusion-dev.install
7-
package/debian/libdatafusion-glib-dev.install
8-
package/debian/libdatafusion-glib-doc.doc-base
9-
package/debian/libdatafusion-glib-doc.install
10-
package/debian/libdatafusion-glib-doc.links
11-
package/debian/libdatafusion-glib10.install
12-
package/debian/libdatafusion10.install
5+
package/debian/*.doc-base
6+
package/debian/*.install
7+
package/debian/*.links
138
package/debian/rules

doc/meson.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022 Sutou Kouhei <kou@clear-code.com>
1+
# Copyright 2022-2023 Sutou Kouhei <kou@clear-code.com>
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -29,6 +29,7 @@ depend_files = files(
2929
'source' / 'install.rst',
3030
'source' / 'introduction.rst',
3131
'source' / 'news' / '10.0.0.md',
32+
'source' / 'news' / '21.0.0.md',
3233
'source' / 'news.rst',
3334
'source' / 'raw-c-api.rst',
3435
)

doc/source/news.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. Copyright 2022 Sutou Kouhei <kou@clear-code.com>
1+
.. Copyright 2022-2023 Sutou Kouhei <kou@clear-code.com>
22
33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.
@@ -16,4 +16,5 @@ News
1616

1717
.. toctree::
1818

19+
news/21.0.0
1920
news/10.0.0

doc/source/news/21.0.0.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!--
2+
Copyright 2023 Sutou Kouhei <kou@clear-code.com>
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
-->
16+
17+
# 21.0.0 - 2023-04-03
18+
19+
## Improvements
20+
21+
- #37: Upgraded based Apache DataFusion to 21.0.0.
22+
23+
- #46: Added support for writing a data frame as Apache Parquet format.

package/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
datafusion-c (21.0.0-1) unstable; urgency=low
2+
3+
* New upstream release.
4+
5+
-- Sutou Kouhei <kou@clear-code.com> Mon, 03 Apr 2023 05:42:13 -0000
6+
17
datafusion-c (10.0.0-1) unstable; urgency=low
28

39
* New upstream release.

package/debian/control

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Build-Depends-Indep:
1818
Standards-Version: 4.1.4.1
1919
Homepage: https://github.com/datafusion-contrib/datafusion-c
2020

21-
Package: libdatafusion10
21+
Package: libdatafusion21
2222
Section: libs
2323
Architecture: any
2424
Multi-Arch: same
@@ -36,25 +36,25 @@ Architecture: any
3636
Multi-Arch: same
3737
Depends:
3838
${misc:Depends},
39-
libdatafusion10 (= ${binary:Version})
39+
libdatafusion21 (= ${binary:Version})
4040
Description: DataFusion C is C API for DataFusion
4141
.
4242
This package provides C header files.
4343

44-
Package: libdatafusion-glib10
44+
Package: libdatafusion-glib21
4545
Section: libs
4646
Architecture: any
4747
Multi-Arch: same
4848
Pre-Depends: ${misc:Pre-Depends}
4949
Depends:
5050
${misc:Depends},
5151
${shlibs:Depends},
52-
libdatafusion10 (= ${binary:Version})
52+
libdatafusion21 (= ${binary:Version})
5353
Description: DataFusion GLib is GLib API for DataFusion
5454
.
5555
This package provides GLib based library files.
5656

57-
Package: gir1.2-datafusion-10.0
57+
Package: gir1.2-datafusion-21.0
5858
Section: introspection
5959
Architecture: any
6060
Multi-Arch: same
@@ -71,10 +71,10 @@ Architecture: any
7171
Multi-Arch: same
7272
Depends:
7373
${misc:Depends},
74-
gir1.2-datafusion-10.0 (= ${binary:Version}),
74+
gir1.2-datafusion-21.0 (= ${binary:Version}),
7575
libarrow-glib-dev,
7676
libdatafusion-dev (= ${binary:Version}),
77-
libdatafusion-glib10 (= ${binary:Version})
77+
libdatafusion-glib21 (= ${binary:Version})
7878
Suggests: libdatafusion-glib-doc
7979
Description: DataFusion GLib is GLib API for DataFusion
8080
.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)