Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0rvar committed Apr 25, 2017
1 parent 4d92016 commit efc8bf8
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Change Log

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.2.0] - 2017-04-25
### Changed
* Switched to Serde for json parsing. Should not affect end users.
### Security
* Fuzzed project with cargo-fuzz, fixed several sources of panics.

[0.2.0]: https://github.com/awestroke/js-source-mapper/compare/v0.1.1...v0.2.0
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "js-source-mapper"
version = "0.1.1"
version = "0.2.0"
authors = ["Orvar Segerström <[email protected]>"]
license = "MIT"
repository = "https://github.com/awestroke/js-source-mapper"
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,12 @@ fn main() {
assert!(mapping.name == "name1".into());
}
```

## Development

### Fuzzing
To run cargo-fuzz on Windows, run the docker image specified in etc/docker.
The following command is handy:
```
docker run --rm -v <full_path_to_project_root>:/project -w /project cargo-fuzz cargo fuzz run fuzzer_script_1
```

0 comments on commit efc8bf8

Please sign in to comment.