Skip to content

Commit aa55825

Browse files
committed
Release 0.3.5
1 parent 93168c9 commit aa55825

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

R/DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: feather
22
Title: R Bindings to the Feather 'API'
3-
Version: 0.3.4.9000
3+
Version: 0.3.5
44
Authors@R: c(
55
person("Hadley", "Wickham", , "[email protected]", role = c("aut", "cre")),
66
person("RStudio", role = "cph"),

R/NEWS.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
# feather (development version)
1+
# feather 0.3.5
2+
3+
* Fixes for CRAN
4+
5+
# feather 0.3.4
6+
7+
* Fixes for CRAN
28

39
# feather 0.3.3
410

R/tests/testthat/test-read.R

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ test_that("iris example is identical to iris data frame", {
1111

1212

1313
test_that("can read/write with utf-8 filename", {
14-
skip_on_os("windows")
14+
# Fails on windows and in strict latin1 locale
15+
skip_on_cran()
1516

1617
path <- file.path(tempdir(), "\u00e5.feather") # å
1718
on.exit(file.remove(path))

0 commit comments

Comments
 (0)