Skip to content

Commit

Permalink
v0.7.1
Browse files Browse the repository at this point in the history
### Bug Fixes

* **jsii-pacmak:** Output .NET build artifacts to `dist/dotnet/` instead of just `dist/` ([#192](#192)) ([f25c8c4](f25c8c4))
* **jsii-kernel:** Fix module loading on systems that use '\' instead of '/' as the path separator ([#193](#193)) ([9e42991](9e42991))

### Features

* **jsii:** Add check against downgrading properties to readonly ([#201](#201)) ([f60b0ac](f60b0ac))
  • Loading branch information
Elad Ben-Israel committed Aug 28, 2018
1 parent 992f5ef commit 9a3713c
Show file tree
Hide file tree
Showing 71 changed files with 345 additions and 182 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.7.1"></a>
## [0.7.1](https://github.com/awslabs/jsii/compare/v0.7.0...v0.7.1) (2018-08-28)

### Bug Fixes

* **jsii-pacmak:** Output .NET build artifacts to `dist/dotnet/` instead of just `dist/` ([#192](https://github.com/awslabs/jsii/issues/192)) ([f25c8c4](https://github.com/awslabs/jsii/commit/f25c8c45ba3de62c05d5d115f8aad675f85a3f31))
* **jsii-kernel:** Fix module loading on systems that use '\' instead of '/' as the path separator ([#193](https://github.com/awslabs/jsii/issues/193)) ([9e42991](https://github.com/awslabs/jsii/pull/193/commits/9e42991c9dad214935d10497c18279cb29c3b613))

### Features

* **jsii:** Add check against downgrading properties to readonly ([#201](https://github.com/awslabs/jsii/issues/201)) ([f60b0ac](https://github.com/awslabs/jsii/commit/f60b0ace014e8e96090ead808436b1ce0cb6b1e8))

<a name="0.7.0"></a>
# [0.7.0](https://github.com/awslabs/jsii/compare/v0.6.4...v0.7.0) (2018-08-21)

Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"packages/*"
],
"rejectCycles": true,
"version": "0.7.0"
"version": "0.7.1"
}
8 changes: 8 additions & 0 deletions packages/codemaker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.7.1"></a>
## [0.7.1](https://github.com/awslabs/jsii/compare/v0.7.0...v0.7.1) (2018-08-28)




**Note:** Version bump only for package codemaker

<a name="0.7.0"></a>
# [0.7.0](https://github.com/awslabs/jsii/compare/v0.6.4...v0.7.0) (2018-08-21)

Expand Down
2 changes: 1 addition & 1 deletion packages/codemaker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codemaker",
"version": "0.7.0",
"version": "0.7.1",
"description": "A tiny utility for generating source code",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/jsii-build-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.7.1"></a>
## [0.7.1](https://github.com/awslabs/jsii/compare/v0.7.0...v0.7.1) (2018-08-28)




**Note:** Version bump only for package jsii-build-tools

<a name="0.7.0"></a>
# [0.7.0](https://github.com/awslabs/jsii/compare/v0.6.4...v0.7.0) (2018-08-21)

Expand Down
2 changes: 1 addition & 1 deletion packages/jsii-build-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsii-build-tools",
"version": "0.7.0",
"version": "0.7.1",
"description": "Internal repository-level tools",
"private": true,
"bin": {
Expand Down
8 changes: 8 additions & 0 deletions packages/jsii-calc-base-of-base/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.7.1"></a>
## [0.7.1](https://github.com/awslabs/jsii/compare/v0.7.0...v0.7.1) (2018-08-28)




**Note:** Version bump only for package @scope/jsii-calc-base-of-base

<a name="0.7.0"></a>
# [0.7.0](https://github.com/awslabs/jsii/compare/v0.6.4...v0.7.0) (2018-08-21)

Expand Down
6 changes: 3 additions & 3 deletions packages/jsii-calc-base-of-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scope/jsii-calc-base-of-base",
"version": "0.7.0",
"version": "0.7.1",
"description": "An example transitive dependency for jsii-calc.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -27,8 +27,8 @@
"test": "diff-test test/assembly.jsii .jsii"
},
"devDependencies": {
"jsii": "^0.7.0",
"jsii-build-tools": "^0.7.0",
"jsii": "^0.7.1",
"jsii-build-tools": "^0.7.1",
"typescript": "^3.0.1"
},
"author": {
Expand Down
4 changes: 2 additions & 2 deletions packages/jsii-calc-base-of-base/test/assembly.jsii
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@
]
}
},
"version": "0.7.0",
"fingerprint": "FKKZLUKxntqx0rgQ5BVGCvz95q+L2V21O10QQ38RP9c="
"version": "0.7.1",
"fingerprint": "leMwJ4WvcsSePtFmqx6m1bb5mGfJyIpbDVLjHvkQT5k="
}
8 changes: 8 additions & 0 deletions packages/jsii-calc-base/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.7.1"></a>
## [0.7.1](https://github.com/awslabs/jsii/compare/v0.7.0...v0.7.1) (2018-08-28)




**Note:** Version bump only for package @scope/jsii-calc-base

<a name="0.7.0"></a>
# [0.7.0](https://github.com/awslabs/jsii/compare/v0.6.4...v0.7.0) (2018-08-21)

Expand Down
8 changes: 4 additions & 4 deletions packages/jsii-calc-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scope/jsii-calc-base",
"version": "0.7.0",
"version": "0.7.1",
"description": "An example direct dependency for jsii-calc.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -27,12 +27,12 @@
"test": "diff-test test/assembly.jsii .jsii"
},
"devDependencies": {
"jsii": "^0.7.0",
"jsii-build-tools": "^0.7.0",
"jsii": "^0.7.1",
"jsii-build-tools": "^0.7.1",
"typescript": "^3.0.1"
},
"dependencies": {
"@scope/jsii-calc-base-of-base": "^0.7.0"
"@scope/jsii-calc-base-of-base": "^0.7.1"
},
"author": {
"name": "Amazon Web Services",
Expand Down
6 changes: 3 additions & 3 deletions packages/jsii-calc-base/test/assembly.jsii
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"npm": "@scope/jsii-calc-base-of-base"
}
},
"version": "0.7.0"
"version": "0.7.1"
}
},
"description": "An example direct dependency for jsii-calc.",
Expand Down Expand Up @@ -99,6 +99,6 @@
]
}
},
"version": "0.7.0",
"fingerprint": "JNixAXvzDfogDF2PSb22epN14J8QLNyfcs7dgcJnd8U="
"version": "0.7.1",
"fingerprint": "LbaOS7fzFOPGTmU2ekKSu8LIOpDpaBHFa6OHaVpkbRI="
}
8 changes: 8 additions & 0 deletions packages/jsii-calc-bundled/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.7.1"></a>
## [0.7.1](https://github.com/awslabs/jsii/compare/v0.7.0...v0.7.1) (2018-08-28)




**Note:** Version bump only for package jsii-calc-bundled

<a name="0.7.0"></a>
# [0.7.0](https://github.com/awslabs/jsii/compare/v0.6.4...v0.7.0) (2018-08-21)

Expand Down
2 changes: 1 addition & 1 deletion packages/jsii-calc-bundled/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsii-calc-bundled",
"version": "0.7.0",
"version": "0.7.1",
"main": "index.js",
"private": true,
"author": {
Expand Down
8 changes: 8 additions & 0 deletions packages/jsii-calc-lib/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.7.1"></a>
## [0.7.1](https://github.com/awslabs/jsii/compare/v0.7.0...v0.7.1) (2018-08-28)




**Note:** Version bump only for package @scope/jsii-calc-lib

<a name="0.7.0"></a>
# [0.7.0](https://github.com/awslabs/jsii/compare/v0.6.4...v0.7.0) (2018-08-21)

Expand Down
8 changes: 4 additions & 4 deletions packages/jsii-calc-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scope/jsii-calc-lib",
"version": "0.7.0",
"version": "0.7.1",
"description": "A simple calcuator library built on JSII.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -27,12 +27,12 @@
"test": "diff-test test/assembly.jsii .jsii"
},
"devDependencies": {
"jsii": "^0.7.0",
"jsii-build-tools": "^0.7.0",
"jsii": "^0.7.1",
"jsii-build-tools": "^0.7.1",
"typescript": "^3.0.1"
},
"dependencies": {
"@scope/jsii-calc-base": "^0.7.0"
"@scope/jsii-calc-base": "^0.7.1"
},
"author": {
"name": "Amazon Web Services",
Expand Down
8 changes: 4 additions & 4 deletions packages/jsii-calc-lib/test/assembly.jsii
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"npm": "@scope/jsii-calc-base-of-base"
}
},
"version": "0.7.0"
"version": "0.7.1"
}
},
"targets": {
Expand All @@ -46,7 +46,7 @@
"npm": "@scope/jsii-calc-base"
}
},
"version": "0.7.0"
"version": "0.7.1"
}
},
"description": "A simple calcuator library built on JSII.",
Expand Down Expand Up @@ -316,6 +316,6 @@
]
}
},
"version": "0.7.0",
"fingerprint": "cJwqDmnlSH8GlZB8eSap9Wmo/J62VcVeX2H2V98rlXI="
"version": "0.7.1",
"fingerprint": "3IeTfxNyPz+olL7Po4gmiOwSNz2i7sRxA7d9Nf0f4qE="
}
8 changes: 8 additions & 0 deletions packages/jsii-calc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.7.1"></a>
## [0.7.1](https://github.com/awslabs/jsii/compare/v0.7.0...v0.7.1) (2018-08-28)




**Note:** Version bump only for package jsii-calc

<a name="0.7.0"></a>
# [0.7.0](https://github.com/awslabs/jsii/compare/v0.6.4...v0.7.0) (2018-08-21)

Expand Down
12 changes: 6 additions & 6 deletions packages/jsii-calc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsii-calc",
"version": "0.7.0",
"version": "0.7.1",
"description": "A simple calcuator built on JSII.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down Expand Up @@ -30,14 +30,14 @@
"jsii-calc-bundled"
],
"dependencies": {
"@scope/jsii-calc-base": "^0.7.0",
"@scope/jsii-calc-lib": "^0.7.0",
"jsii-calc-bundled": "^0.7.0"
"@scope/jsii-calc-base": "^0.7.1",
"@scope/jsii-calc-lib": "^0.7.1",
"jsii-calc-bundled": "^0.7.1"
},
"devDependencies": {
"@types/node": "^9.6.18",
"jsii": "^0.7.0",
"jsii-build-tools": "^0.7.0",
"jsii": "^0.7.1",
"jsii-build-tools": "^0.7.1",
"typescript": "^3.0.1"
},
"author": {
Expand Down
16 changes: 8 additions & 8 deletions packages/jsii-calc/test/assembly.jsii
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"url": "https://aws.amazon.com"
},
"bundled": {
"jsii-calc-bundled": "^0.7.0"
"jsii-calc-bundled": "^0.7.1"
},
"contributors": [
{
Expand Down Expand Up @@ -53,7 +53,7 @@
"npm": "@scope/jsii-calc-base-of-base"
}
},
"version": "0.7.0"
"version": "0.7.1"
}
},
"targets": {
Expand All @@ -72,7 +72,7 @@
"npm": "@scope/jsii-calc-base"
}
},
"version": "0.7.0"
"version": "0.7.1"
},
"@scope/jsii-calc-lib": {
"dependencies": {
Expand All @@ -95,7 +95,7 @@
"npm": "@scope/jsii-calc-base-of-base"
}
},
"version": "0.7.0"
"version": "0.7.1"
}
},
"targets": {
Expand All @@ -114,7 +114,7 @@
"npm": "@scope/jsii-calc-base"
}
},
"version": "0.7.0"
"version": "0.7.1"
}
},
"targets": {
Expand All @@ -133,7 +133,7 @@
"npm": "@scope/jsii-calc-lib"
}
},
"version": "0.7.0"
"version": "0.7.1"
}
},
"description": "A simple calcuator built on JSII.",
Expand Down Expand Up @@ -2837,6 +2837,6 @@
"namespace": "composition.CompositeOperation"
}
},
"version": "0.7.0",
"fingerprint": "GnP0LLo9SpYQUrRPBrkrx9taOuXatdKd5m/qR3gkx04="
"version": "0.7.1",
"fingerprint": "THQKxLYNQLK1jrNJjV/vj5ZU4obwt7XJmk5Vfz6hHVo="
}
8 changes: 8 additions & 0 deletions packages/jsii-dotnet-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="0.7.1"></a>
## [0.7.1](https://github.com/awslabs/jsii/compare/v0.7.0...v0.7.1) (2018-08-28)




**Note:** Version bump only for package jsii-dotnet-generator

<a name="0.7.0"></a>
# [0.7.0](https://github.com/awslabs/jsii/compare/v0.6.4...v0.7.0) (2018-08-21)

Expand Down
Loading

0 comments on commit 9a3713c

Please sign in to comment.