Skip to content

Commit

Permalink
Update to CRAN release
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasp85 committed Aug 16, 2017
1 parent 1af4560 commit df9a73e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: fiery
Type: Package
Title: A Lightweight and Flexible Web Framework
Version: 0.2.3.9001
Date: 2017-07-13
Version: 1.0.0
Date: 2017-08-16
Authors@R: c(
person('Thomas Lin', 'Pedersen', , 'thomasp85@gmail.com', c('aut', 'cre'))
)
Expand All @@ -13,7 +13,7 @@ Description: A very flexible framework for building server side logic in R. The
static content to full-blown dynamic web-apps. Fiery does not hold your hand
as much as e.g. the shiny package does, but instead sets you free to create
your web app the way you want.
License: GPL (>=2)
License: MIT + file LICENSE
Imports:
R6,
assertthat,
Expand All @@ -26,7 +26,7 @@ Imports:
stats,
desc,
reqres
Collate:
Collate:
'aaa.R'
'HandlerStack.R'
'Fire.R'
Expand Down
2 changes: 2 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
YEAR: 2017
COPYRIGHT HOLDER: Thomas Lin Pedersen
4 changes: 3 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* **BREAKING** The `header` event now expect handlers to return a logical, with
`TRUE` indicating further processing, and `FALSE` indicating termination.
* Cycle events are now triggered when running with `block = FALSE` making the
two run modes identical in their lifecycle events.
two run modes identical in their life cycle events.
* **BREAKING** The `after-request` event will no longer pass the response to
handlers. This can be retrieved from the `request` object.
* The server can now be mounted at a path, which will strip that path from
Expand All @@ -29,6 +29,8 @@
* **BREAKING** fields now uses snake_case rather than camelCase for a more
consistent interface. This means `refreshRate` -> `refresh_rate`,
`triggerDir` -> `trigger_dir`.
* Switch to MIT License
* Catch errors in start and resume event handlers

# fiery 0.2.3

Expand Down

0 comments on commit df9a73e

Please sign in to comment.