Skip to content

Commit

Permalink
Release 0.1.0-beta.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyzerner committed Sep 1, 2021
1 parent 3156397 commit 78723b5
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0-beta.7] - 2021-09-01
### Fixed
- Fix regression with attribute casting not handling dates correctly, and add more sophisticated handling of primitives, constructables, and callables.

Expand Down Expand Up @@ -35,7 +37,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1.0-beta.2] - 2021-01-17
- Initial release

[Unreleased]: https://github.com/tobyzerner/json-api-models/compare/v0.1.0-beta.6...HEAD
[Unreleased]: https://github.com/tobyzerner/json-api-models/compare/v0.1.0-beta.7...HEAD
[0.1.0-beta.7]: https://github.com/tobyzerner/json-api-models/compare/v0.1.0-beta.6...v0.1.0-beta.7
[0.1.0-beta.6]: https://github.com/tobyzerner/json-api-models/compare/v0.1.0-beta.5...v0.1.0-beta.6
[0.1.0-beta.5]: https://github.com/tobyzerner/json-api-models/compare/v0.1.0-beta.4...v0.1.0-beta.5
[0.1.0-beta.4]: https://github.com/tobyzerner/json-api-models/compare/v0.1.0-beta.3...v0.1.0-beta.4
Expand Down
2 changes: 1 addition & 1 deletion dist/index.cjs.js

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

2 changes: 1 addition & 1 deletion dist/index.es.js

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

2 changes: 1 addition & 1 deletion dist/index.js

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

2 changes: 1 addition & 1 deletion dist/model.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Store } from './store';
import { JsonApiIdentifier, JsonApiRelationships, JsonApiResource, KeyValueObject } from './types';
export declare type CastAttributes = {
[key: string]: (value: any) => any;
[key: string]: StringConstructor | NumberConstructor | BooleanConstructor | ((value: any) => any) | (new (value: any) => any);
};
export declare class Model implements JsonApiResource {
protected store: Store;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.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": "json-api-models",
"description": "A lightweight layer for working with JSON:API data.",
"version": "0.1.0-beta.6",
"version": "0.1.0-beta.7",
"author": "Toby Zerner",
"license": "MIT",
"main": "./dist/index.cjs.js",
Expand Down

0 comments on commit 78723b5

Please sign in to comment.