Skip to content

Commit 4950731

Browse files
authored
fix: rename to Amazon S3 Encryption Client (#89)
* fix: rename to Amazon S3 Encryption Client
1 parent 24be141 commit 4950731

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.releaserc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
}],
5858
["@semantic-release/git", {
5959
"assets": ["./CHANGELOG.md", "./pom.xml", "./README.md"],
60-
"message": "AWS S3 Encryption Client ${nextRelease.version} Release -- $(date +%Y-%m-%d) \n\n${nextRelease.notes}"
60+
"message": "Amazon S3 Encryption Client ${nextRelease.version} Release -- $(date +%Y-%m-%d) \n\n${nextRelease.notes}"
6161
}],
6262
],
6363
"repositoryUrl": "https://github.com/aws/aws-s3-encryption-client-java",

cfn/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Parameters:
1313
ProjectDescription:
1414
Type: String
1515
Description: The description for the CodeBuild Project
16-
Default: CFN stack for managing CodeBuild projects for the AWS S3EC Java
16+
Default: CFN stack for managing CodeBuild projects for the Amazon S3EC Java
1717
SourceLocation:
1818
Type: String
1919
Description: The https GitHub URL for the project

codebuild/release/upload_artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ phases:
6868
-DremoteRepositories=central::default::https://repo.maven.apache.org/maven2,codeartifact::::https://${DOMAIN}-${ACCOUNT}.d.codeartifact.${REGION}.amazonaws.com/maven/${REPOSITORY} \
6969
-Dartifact=software.amazon.encryption:s3:${VERSION}-$CODEBUILD_RESOLVED_SOURCE_VERSION:jar:javadoc \
7070
-s $SETTINGS_FILE
71-
- gh release create v${VERSION} ~/.m2/repository/software/amazon/encryption/s3/${VERSION}-$CODEBUILD_RESOLVED_SOURCE_VERSION/*.jar -d -F CHANGELOG.md -t "AWS S3 Encryption Client ${VERSION} Release -- $(date +%Y-%m-%d)"
71+
- gh release create v${VERSION} ~/.m2/repository/software/amazon/encryption/s3/${VERSION}-$CODEBUILD_RESOLVED_SOURCE_VERSION/*.jar -d -F CHANGELOG.md -t "Amazon S3 Encryption Client ${VERSION} Release -- $(date +%Y-%m-%d)"

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<version>3.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

12-
<name>AWS S3 Encryption Client</name>
13-
<description>The AWS S3 Encryption Client provides client-side encryption for S3</description>
12+
<name>Amazon S3 Encryption Client</name>
13+
<description>The Amazon S3 Encryption Client provides client-side encryption for S3</description>
1414
<url>https://github.com/aws/aws-s3-encryption-client-java</url>
1515

1616
<licenses>

src/main/java/software/amazon/encryption/s3/internal/ApiNameVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Provides the information for the ApiName APIs for the AWS SDK
77
*/
88
public class ApiNameVersion {
9-
public static final String API_NAME = "AwsS3Encrypt";
9+
public static final String API_NAME = "AmazonS3Encrypt";
1010

1111
public static final String API_VERSION_UNKNOWN = "unknown";
1212

src/test/java/software/amazon/encryption/s3/internal/ApiNameVersionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
public class ApiNameVersionTest {
88

9-
private final static String EXPECTED_API_NAME = "AwsS3Encrypt";
9+
private final static String EXPECTED_API_NAME = "AmazonS3Encrypt";
1010
private final static String EXPECTED_API_VERSION = "unknown";
1111

1212
@Test

0 commit comments

Comments
 (0)