0.3.0
This is the first release in almost 6 months; introducing a snapshot of where we
were right before splitting up the crate. This release is mostly similar to
0.2.0
, but sets us up to start rewinding prior work on top.
Added
- Added "unstable" feature flag.
- Added example for serving static files.
- Added keywords and categories to Cargo.toml.
- Implemented
Default
forApp
. - Added
App::with_state
constructor method. - Added
Context::state
(replacingContext::app_data
)
Changed
- Fixed multipart uploads.
- Fixed some doc tests.
- Rename
cookies::CookiesExt
tocookies::ContextExt
. - Rename
querystring::ExtractQuery
toquerystring::ContextExt
. - Switched CI provider from Travis to GitHub actions.
- Updated README.
- Updated all dependencies.
- Replaced
AppData
withState
.
Removed
- Removed the RFCs subdirectory.
- Removed an extra incoming license requirement.
- Removed outdated version logs.
- Removed
rustfmt.toml
. - Removed
Context::app_data
(replaced withContext::state
).