Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING: rename 'rtv' => 'runtime-values' #494

Merged
merged 1 commit into from
Aug 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
[@mpiroc]: https://github.com/mpiroc
[@Doug-AWS]: https://github.com/Doug-AWS

## UNRELEASED

* _**BREAKING**_: renamed `@aws-cdk/rtv` to `@aws-cdk/runtime-values`.

## 0.8.0 - 2018-07-31

___This is the first public release of the AWS CDK!___
Expand Down
2 changes: 1 addition & 1 deletion examples/cdk-examples-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@aws-cdk/aws-sns": "^0.8.0",
"@aws-cdk/aws-sqs": "^0.8.0",
"@aws-cdk/cdk": "^0.8.0",
"@aws-cdk/rtv": "^0.8.0"
"@aws-cdk/runtime-values": "^0.8.0"
},
"repository": {
"url": "git://github.com/awslabs/aws-cdk",
Expand Down
50 changes: 25 additions & 25 deletions packages/@aws-cdk/cfnspec/package-lock.json

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

File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ For example, say we want to publish a queue's URL to a lambda function.
### Construction Code

```ts
import { RuntimeValue } from '@aws-cdk/rtv'
import { RuntimeValue } from '@aws-cdk/runtime-values'

const queue = new Queue(this, 'MyQueue', { /* props.... */ });
const fn = new Lambda(this, 'MyFunction', { /* props... */ });
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@aws-cdk/rtv",
"name": "@aws-cdk/runtime-values",
"version": "0.8.0",
"description": "Runtime values support for the AWS CDK",
"main": "lib/index.js",
Expand All @@ -8,14 +8,14 @@
"outdir": "dist",
"targets": {
"java": {
"package": "software.amazon.awscdk.rtv",
"package": "software.amazon.awscdk.runtimevalues",
"maven": {
"groupId": "software.amazon.awscdk",
"artifactId": "cdk-rtv"
"artifactId": "cdk-runtime-values"
}
},
"dotnet": {
"namespace": "Amazon.CDK.RTV"
"namespace": "Amazon.CDK.RuntimeValues"
}
}
},
Expand All @@ -35,7 +35,7 @@
"keywords": [
"aws",
"cdk",
"rtv"
"runtime-values"
],
"author": {
"name": "Amazon Web Services",
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-all/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
"@aws-cdk/aws-workspaces": "^0.8.0",
"@aws-cdk/cdk": "^0.8.0",
"@aws-cdk/cx-api": "^0.8.0",
"@aws-cdk/rtv": "^0.8.0"
"@aws-cdk/runtime-values": "^0.8.0"
},
"keywords": [
"aws",
Expand Down
Loading