Skip to content

Commit

Permalink
BREAKING: rename 'rtv' => 'runtime-values' (#494)
Browse files Browse the repository at this point in the history
RTV is not a universally recognized TLA, and might be
confusing to people.
  • Loading branch information
rix0rrr authored Aug 3, 2018
1 parent a449907 commit dc28f19
Show file tree
Hide file tree
Showing 20 changed files with 645 additions and 641 deletions.
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.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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

0 comments on commit dc28f19

Please sign in to comment.