You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2022/05/09 02:24:41 UTC

[arrow] branch master updated: ARROW-16497: [R] Update version in NEWS.md

This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 26aad14329 ARROW-16497: [R] Update version in NEWS.md
26aad14329 is described below

commit 26aad1432922f320d9c1752ae304e34fd5c032a9
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Mon May 9 11:24:30 2022 +0900

    ARROW-16497: [R] Update version in NEWS.md
    
    This solves the following CI failure:
    
    https://github.com/apache/arrow/runs/6329293119?check_suite_focus=true
    
        Failure: test_version_pre_tag(PrepareTest)
        /home/runner/work/arrow/arrow/dev/release/01-prepare-test.rb:226:in `test_version_pre_tag'
             223:     end
             224:
             225:     prepare("VERSION_PRE_TAG")
          => 226:     assert_equal(expected_changes.sort_by {|diff| diff[:path]},
             227:                  parse_patch(git("log", "-n", "1", "-p")))
             228:   end
             229: end
        ...
        ?  {:hunks=>[["-# arrow 8.0.0.9000", "+# arrow 9.0.0"]], :path=>"r/NEWS.md"},
        ?                       7
    
    Closes #13089 from kou/r-news-update
    
    Authored-by: Sutou Kouhei <ko...@clear-code.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 r/NEWS.md | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/r/NEWS.md b/r/NEWS.md
index c7a71ca956..222c4fd134 100644
--- a/r/NEWS.md
+++ b/r/NEWS.md
@@ -17,13 +17,15 @@
   under the License.
 -->
 
-# arrow 7.0.0.9000
+# arrow 8.0.0.9000
+
+# arrow 8.0.0
 
 ## Enhancements to dplyr and datasets
 
 * `open_dataset()`:
   - correctly supports the `skip` argument for skipping header rows in CSV datasets.
-  - can take a list of datasets with differing schemas and attempt to unify the 
+  - can take a list of datasets with differing schemas and attempt to unify the
     schemas to produce a `UnionDataset`.
 * Arrow `{dplyr}` queries:
   - are supported on `RecordBatchReader`. This allows, for example, results from DuckDB
@@ -33,7 +35,7 @@
   - supports `dplyr::rename_with()`.
   - `dplyr::count()` returns an ungrouped dataframe.
 * `write_dataset` has more options for controlling row group and file sizes when
-  writing partitioned datasets, such as `max_open_files`, `max_rows_per_file`, 
+  writing partitioned datasets, such as `max_open_files`, `max_rows_per_file`,
   `min_rows_per_group`, and `max_rows_per_group`.
 * `write_csv_arrow` accepts a `Dataset` or an Arrow dplyr query.
 * Joining one or more datasets while `option(use_threads = FALSE)` no longer
@@ -47,16 +49,16 @@
 * `read_csv_arrow()`'s readr-style type `T` is mapped to `timestamp(unit = "ns")` 
   instead of `timestamp(unit = "s")`.
 * For Arrow dplyr queries, added additional `{lubridate}` features and fixes:
-  * New component extraction functions: 
+  * New component extraction functions:
     * `lubridate::tz()` (timezone),
     * `lubridate::semester()`,
     * `lubridate::dst()` (daylight savings time boolean),
     * `lubridate::date()`,
     * `lubridate::epiyear()` (year according to epidemiological week calendar),
   * `lubridate::month()` works with integer inputs.
-  * `lubridate::make_date()` & `lubridate::make_datetime()` + 
-    `lubridate::ISOdatetime()` & `lubridate::ISOdate()` to 
-    create date-times from numeric representations. 
+  * `lubridate::make_date()` & `lubridate::make_datetime()` +
+    `lubridate::ISOdatetime()` & `lubridate::ISOdate()` to
+    create date-times from numeric representations.
   * `lubridate::decimal_date()` and `lubridate::date_decimal()`
   * `lubridate::make_difftime()` (duration constructor)
   * `?lubridate::duration` helper functions, such as `dyears()`, `dhours()`, `dseconds()`.
@@ -68,7 +70,7 @@
   * Arrow timestamp and date arrays support `base::format()`
   * `strptime()` returns `NA` instead of erroring in case of format mismatch,
     just like `base::strptime()`.
-* Timezone operations are supported on Windows if the 
+* Timezone operations are supported on Windows if the
   [tzdb package](https://cran.r-project.org/web/packages/tzdb/index.html) is also
   installed.