Skip to content

Commit

Permalink
Merge pull request #462 from shimataro/develop
Browse files Browse the repository at this point in the history
version 3.0.0-rc.5
  • Loading branch information
shimataro committed May 16, 2020
2 parents 2fe9ede + d356a8d commit dcc1f48
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [3.0.0-rc.5] - 2020-05-17

### Fixed

* Deno module name

## [3.0.0-rc.4] - 2020-05-16

### Added
Expand Down Expand Up @@ -459,7 +465,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

* First release.

[Unreleased]: https://github.com/shimataro/value-schema/compare/v3.0.0-rc.4...HEAD
[Unreleased]: https://github.com/shimataro/value-schema/compare/v3.0.0-rc.5...HEAD
[3.0.0-rc.5]: https://github.com/shimataro/value-schema/compare/v3.0.0-rc.4...v3.0.0-rc.5
[3.0.0-rc.4]: https://github.com/shimataro/value-schema/compare/v3.0.0-rc.3...v3.0.0-rc.4
[3.0.0-rc.3]: https://github.com/shimataro/value-schema/compare/v3.0.0-rc.2...v3.0.0-rc.3
[3.0.0-rc.2]: https://github.com/shimataro/value-schema/compare/v3.0.0-rc.1...v3.0.0-rc.2
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,14 +193,16 @@ $ node --experimental-modules foo.mjs

**TypeScript** auto-completion and type-checking works perfectly on [Visual Studio Code](https://code.visualstudio.com/) and [IntelliJ IDEA](https://www.jetbrains.com/idea/)!

### TypeScript on [Deno](https://deno.land/)
### [Deno](https://deno.land/)

Deno has been supported as of v3.0.0-rc.4.

```typescript
import vs from "https://deno.land/x/value-schema/mod.ts";
import vs from "https://deno.land/x/value_schema/mod.ts";
```

**CAUTION**: specify `value_schema` (underscore) NOT `value-schema` (hyphen) because [deno.land](https://deno.land/) module database does not support name with hyphen!

## Reference

### types and constants
Expand Down
2 changes: 1 addition & 1 deletion npm-shrinkwrap.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "value-schema",
"description": "simple, easy-to-use, and declarative schema validator",
"version": "3.0.0-rc.4",
"version": "3.0.0-rc.5",
"author": "shimataro",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit dcc1f48

Please sign in to comment.