Skip to content

Commit e1130f8

Browse files
committed
Merge tag 'v0.0-8'
- Vignette on customizing styler (#145). - No line break after `switch()` and friends (#152). - Remove flat relicts completely (#151). - Don't reindent function calls and break line correctly for multi-line calls (#149). - Set space between "=" and "," (#150). - Make R CMD Check perfect (#148). - Adding tests for exception handling with invalid parse data (#139). - Fix indention by checking for all potential triggers (#142). - Fix un-indention (#135). - Support wide characters (#130). - No spaces around :, :: and :::. - Redesigning the API (#123). - Solve eq_sub indention in general (#125). - Minor refactorings. - Re-indent token-dependent (#119). - Supporting more indention patterns. - Allow raw indention. - Definitively fixing eol issue with comments. - Infrastructure. - Flattening out the parse table. - New rule: no space after ! -> !!! for tidyeval. - Fix spacing around '{'. - Don't drop tokens! Fixes #101. - EOL spaces in empty comments (and in general) (#98). - mal-indention in conditional statement due to wrong specification of indent_without_paren) (#95). - Complicated indentions based on arithmetic and special operators (#96). - indention interaction on with assignment operator and other operators (#97).
2 parents 096851d + b90cd09 commit e1130f8

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: styler
22
Title: Non-invasive Pretty Printing of R code
3-
Version: 0.0-7
3+
Version: 0.0-8
44
Authors@R: c(person("Kirill", "Müller", role = c("aut"), email = "[email protected]"),
55
person("Lorenz", "Walthert", role = c("cre", "aut"), email = "[email protected]"))
66
Description:
@@ -28,7 +28,7 @@ Remotes:
2828
License: GPL-3
2929
Encoding: UTF-8
3030
LazyData: true
31-
Date: 2017-07-27
31+
Date: 2017-08-24
3232
BugReports: https://github.com/krlmlr/styler/issues
3333
URL: https://github.com/krlmlr/styler, http://krlmlr.github.io/styler
3434
Roxygen: list(markdown = TRUE, roclets = c("rd", "namespace", "collate", "pkgapi::api_roclet"))

NEWS.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
## styler 0.0-8 (2017-08-24)
2+
3+
- Vignette on customizing styler (#145).
4+
- No line break after `switch()` and friends (#152).
5+
- Remove flat relicts completely (#151).
6+
- Don't reindent function calls and break line correctly for multi-line calls (#149).
7+
- Set space between "=" and "," (#150).
8+
- Make R CMD Check perfect (#148).
9+
- Adding tests for exception handling with invalid parse data (#139).
10+
- Fix indention by checking for all potential triggers (#142).
11+
- Fix un-indention (#135).
12+
- Support wide characters (#130).
13+
- No spaces around :, :: and :::.
14+
- Redesigning the API (#123).
15+
- Solve eq_sub indention in general (#125).
16+
- Minor refactorings.
17+
- Re-indent token-dependent (#119).
18+
- Supporting more indention patterns.
19+
- Allow raw indention.
20+
- Definitively fixing eol issue with comments.
21+
- Infrastructure.
22+
- Flattening out the parse table.
23+
- New rule: no space after ! -> !!! for tidyeval.
24+
- Fix spacing around '{'.
25+
- Don't drop tokens! Fixes #101.
26+
- EOL spaces in empty comments (and in general) (#98).
27+
- mal-indention in conditional statement due to wrong specification of indent_without_paren) (#95).
28+
- Complicated indentions based on arithmetic and special operators (#96).
29+
- indention interaction on with assignment operator and other operators (#97).
30+
131
## styler 0.0-7 (2017-07-27)
232

333
- curly braces don't move a line up if previous token is comment.

0 commit comments

Comments
 (0)