Skip to content

fix: rename to Amazon S3 Encryption Client #89

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

Merged
merged 2 commits into from
Feb 24, 2023
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
2 changes: 1 addition & 1 deletion .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
}],
["@semantic-release/git", {
"assets": ["./CHANGELOG.md", "./pom.xml", "./README.md"],
"message": "AWS S3 Encryption Client ${nextRelease.version} Release -- $(date +%Y-%m-%d) \n\n${nextRelease.notes}"
"message": "Amazon S3 Encryption Client ${nextRelease.version} Release -- $(date +%Y-%m-%d) \n\n${nextRelease.notes}"
}],
],
"repositoryUrl": "https://github.com/aws/aws-s3-encryption-client-java",
Expand Down
2 changes: 1 addition & 1 deletion cfn/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Parameters:
ProjectDescription:
Type: String
Description: The description for the CodeBuild Project
Default: CFN stack for managing CodeBuild projects for the AWS S3EC Java
Default: CFN stack for managing CodeBuild projects for the Amazon S3EC Java
SourceLocation:
Type: String
Description: The https GitHub URL for the project
Expand Down
2 changes: 1 addition & 1 deletion codebuild/release/upload_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ phases:
-DremoteRepositories=central::default::https://repo.maven.apache.org/maven2,codeartifact::::https://${DOMAIN}-${ACCOUNT}.d.codeartifact.${REGION}.amazonaws.com/maven/${REPOSITORY} \
-Dartifact=software.amazon.encryption:s3:${VERSION}-$CODEBUILD_RESOLVED_SOURCE_VERSION:jar:javadoc \
-s $SETTINGS_FILE
- 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)"
- 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)"
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<version>3.0-SNAPSHOT</version>
<packaging>jar</packaging>

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

<licenses>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Provides the information for the ApiName APIs for the AWS SDK
*/
public class ApiNameVersion {
public static final String API_NAME = "AwsS3Encrypt";
public static final String API_NAME = "AmazonS3Encrypt";

public static final String API_VERSION_UNKNOWN = "unknown";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

public class ApiNameVersionTest {

private final static String EXPECTED_API_NAME = "AwsS3Encrypt";
private final static String EXPECTED_API_NAME = "AmazonS3Encrypt";
private final static String EXPECTED_API_VERSION = "unknown";

@Test
Expand Down