Skip to content

Commit

Permalink
Merge pull request #33 from Swechhya/changes-for-0.3.1-release
Browse files Browse the repository at this point in the history
Changes for 0.3.1 release
  • Loading branch information
Swechhya authored Oct 1, 2019
2 parents 9e0257b + 1a19fca commit 5b3fbbb
Show file tree
Hide file tree
Showing 13 changed files with 28 additions and 13 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: excelR
Type: Package
Title: A Wrapper of the 'JavaScript' Library 'jExcel'
Version: 0.3.0
Version: 0.3.1
Authors@R: c(person("Swechhya", "Bista", email = "[email protected]",
role = c("aut", "cre")),
person("Kent", "Russell", role = c("ctb")),
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# excelR 0.3.1
* fix bug when NA is present in data

* fix bug date and character columns are converted to factor after editing any cell.

# excelR 0.3.0

* add feature to auto detect column type from the data
Expand Down
2 changes: 1 addition & 1 deletion docs/CODE_OF_CONDUCT.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/LICENSE-text.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/excelOutput.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/excelTable.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/excel_to_R.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/renderExcel.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion index.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ library(excelR)

data = data.frame(Model = c('Mazda', 'Pegeout', 'Honda Fit', 'Honda CRV'),
Date=c(as.Date('2006-01-01'), as.Date('2005-01-01'), as.Date('2004-01-01'), as.Date('2003-01-01') ),
Availability = c(TRUE, FALSE, TRUE, TRUE))
Availability = c(TRUE, FALSE, TRUE, TRUE), stringsAsFactors = FALSE)

columns = data.frame(title=c('Model', 'Date', 'Availability' ),
width= c(300, 300, 300))
Expand Down

0 comments on commit 5b3fbbb

Please sign in to comment.