This is an automated email from the ASF dual-hosted git repository.
paleolimbot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-nanoarrow.git
The following commit(s) were added to refs/heads/main by this push:
new d91c35b Bump versions on main to post 0.1.0 (#145)
d91c35b is described below
commit d91c35b33c7b6ff94f5f929384879352e241ed71
Author: Dewey Dunnington <[email protected]>
AuthorDate: Tue Mar 7 13:19:03 2023 -0400
Bump versions on main to post 0.1.0 (#145)
---
CHANGELOG.md | 19 +++++++++++++++++++
CMakeLists.txt | 2 +-
r/DESCRIPTION | 2 +-
3 files changed, 21 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 99d6c88..b4b6c26 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,3 +18,22 @@
-->
# nanoarrow Changelog
+
+## nanoarrow 0.1.0 (2023-03-01)
+
+### Feat
+
+- **extensions/nanoarrow_ipc**: Improve type coverage of schema field decode
(#115)
+- **r**: Add `as_nanoarrow_array()` implementation that does not fall back on
`arrow::as_arrow_array()` everywhere (#108)
+- **r**: Create nanoarrow_array objects from buffers (#105)
+- **r**: Implement infer schema methods (#104)
+- **r**: Create and modify nanoarrow_schema objects (#101)
+
+### Fix
+
+- Correct storage type for timestamp and duration types (#116)
+- **extensions/nanoarrow_ipc**: Remove extra copy of flatcc from dist/ (#113)
+- make sure bundled nanoarrow is also valid C++ (#112)
+- **extensions/nanoarrow_ipc**: Tweak draft interface (#111)
+- set map entries/key to non-nullable (#107)
+- **ci**: Actually commit bundled IPC extension to dist/ (#96)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index dc91a01..a18fe30 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -22,7 +22,7 @@ if(NOT DEFINED CMAKE_C_STANDARD)
set(CMAKE_C_STANDARD 99)
endif()
-set(NANOARROW_VERSION "0.1.0-SNAPSHOT")
+set(NANOARROW_VERSION "0.2.0-SNAPSHOT")
string(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" NANOARROW_BASE_VERSION
"${NANOARROW_VERSION}")
project(nanoarrow VERSION "${NANOARROW_BASE_VERSION}")
diff --git a/r/DESCRIPTION b/r/DESCRIPTION
index 67cc9aa..bd5f9d1 100644
--- a/r/DESCRIPTION
+++ b/r/DESCRIPTION
@@ -1,6 +1,6 @@
Package: nanoarrow
Title: An R Interface to the 'nanoarrow' C Library
-Version: 0.0.0.9000
+Version: 0.1.0.9000
Authors@R: c(
person(given = "Dewey",
family = "Dunnington",