CHANGELOG.md in duckdb-0.10.2.0 vs CHANGELOG.md in duckdb-1.0.0.0
- old
+ new
@@ -2,9 +2,45 @@
All notable changes to this project will be documented in this file.
## Unreleased
+# 1.0.0.0 - 2024-06-08
+- bump duckdb to 1.0.0.
+- add `DuckDB::ExtractedStatements` class.
+- add `DuckDB::ExtractedStatements#size`.
+- add `DuckDB::ExtractedStatements#prepared_statement`.
+- raise error when `DuckDB::ExtractedStatements#new` is called with invalid SQL.
+- The following public/private methods will be deprecated.
+ - `DuckDB::Result#streaming?`
+ - `DuckDB::Result#_null?`
+ - `DuckDB::Result#_to_boolean`
+ - `DuckDB::Result#_to_smallint`
+ - `DuckDB::Result#_to_utinyint`
+ - `DuckDB::Result#_to_integer`
+ - `DuckDB::Result#_to_bigint`
+ - `DuckDB::Result#_to_hugeint`
+ - `DuckDB::Result#_to_hugeint_internal`
+ - `DuckDB::Result#__to_hugeint_internal`
+ - `DuckDB::Result#_to_decimal`
+ - `DuckDB::Result#_to_decimal_internal`
+ - `DuckDB::Result#__to_decimal_internal`
+ - `DuckDB::Result#_to_float`
+ - `DuckDB::Result#_to_double`
+ - `DuckDB::Result#_to_string`
+ - `DuckDB::Result#_to_string_internal`
+ - `DuckDB::Result#_to_blob`
+ - `DuckDB::Result.use_chunk_each=`
+ - `DuckDB::Result#use_chunk_each?`
+
+## Breaking changes
+- DuckDB::Result.use_chunk_each is true by default.
+ If you want to use the old behavior, set `DuckDB::Result.use_chunk_each = false`.
+ But the old behavior will be removed in the future release.
+
+# 0.10.3.0 - 2024-05-25
+- bump to duckdb v0.10.3.
+
# 0.10.2.0 - 2024-04-20
- remove version from docker-compose.yml.
- bump to duckdb v0.10.2.
# 0.10.1.1 - 2024-03-31