Skip to content

Commit

Permalink
chore: version bump 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lmammino committed Apr 27, 2024
1 parent 0d080b2 commit ef61b64
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oidc-authorizer"
version = "0.0.11"
version = "0.1.0"
edition = "2021"
license = "MIT"

Expand Down
4 changes: 2 additions & 2 deletions docs/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Resources:
Properties:
Location:
ApplicationId: arn:aws:serverlessrepo:eu-west-1:795006566846:applications/oidc-authorizer
SemanticVersion: 0.0.11 # ⬅️ CHANGE: SPECIFY THE EXACT VERSION
SemanticVersion: 0.1.0 # ⬅️ CHANGE: SPECIFY THE EXACT VERSION
Parameters:
# 👀 CHANGE THE FOLLOWING PARAMETERS
AcceptedAlgorithms: ""
Expand Down Expand Up @@ -66,7 +66,7 @@ The following snippet shows how to use the SAR application with CDK (using Types
const authorizerApp = new cdk.aws_sam.CfnApplication(this, 'AuthorizerApp', {
location: {
applicationId: 'arn:aws:serverlessrepo:eu-west-1:795006566846:applications/oidc-authorizer',
semanticVersion: '0.0.11' // 👀 CHANGE ME
semanticVersion: '0.1.0' // 👀 CHANGE ME
},
parameters: {
// 👀 CHANGE THE FOLLOWING PARAMETERS
Expand Down
2 changes: 1 addition & 1 deletion examples/cdk-from-sar/cloudformation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Resources:
Properties:
Location:
ApplicationId: arn:aws:serverlessrepo:eu-west-1:795006566846:applications/oidc-authorizer
SemanticVersion: 0.0.11
SemanticVersion: 0.1.0
Parameters:
AcceptedAlgorithms: ""
AcceptedAudiences: ""
Expand Down
2 changes: 1 addition & 1 deletion examples/cdk-from-sar/lib/cdk-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class CdkStack extends cdk.Stack {
const authorizerApp = new cdk.aws_sam.CfnApplication(this, 'AuthorizerApp', {
location: {
applicationId: 'arn:aws:serverlessrepo:eu-west-1:795006566846:applications/oidc-authorizer',
semanticVersion: '0.0.11' // 👀 CHANGE ME
semanticVersion: '0.1.0' // 👀 CHANGE ME
},
parameters: {
// 👀 CHANGE THE FOLLOWING PARAMETERS
Expand Down
2 changes: 1 addition & 1 deletion examples/sam-from-sar/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Resources:
Properties:
Location:
ApplicationId: arn:aws:serverlessrepo:eu-west-1:795006566846:applications/oidc-authorizer
SemanticVersion: 0.0.11 # 👀 CHANGE ME
SemanticVersion: 0.1.0 # 👀 CHANGE ME
Parameters:
# 👀 CHANGE THE FOLLOWING PARAMETERS
AcceptedAlgorithms: ""
Expand Down
2 changes: 1 addition & 1 deletion template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Metadata:
ReadmeUrl: README.md
Labels: ["apigateway", "authorizer", "lambda", "oidc"]
HomePageUrl: https://github.com/lmammino/oidc-authorizer
SemanticVersion: 0.0.11
SemanticVersion: 0.1.0
SourceCodeUrl: https://github.com/lmammino/oidc-authorizer

Parameters:
Expand Down

0 comments on commit ef61b64

Please sign in to comment.