Skip to content

Commit

Permalink
Version 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mmajis committed Feb 8, 2020
1 parent fac104f commit 301bf03
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plantuml-serverless",
"version": "0.0.6-SNAPSHOT",
"version": "0.0.6",
"description": "Render PlantUML diagrams",
"main": "index.js",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>com.nitor</groupId>
<artifactId>plantuml-serverless</artifactId>
<packaging>jar</packaging>
<version>0.0.6-SNAPSHOT</version>
<version>0.0.6</version>
<name>PlantUML Serverless API</name>

<properties>
Expand Down
17 changes: 8 additions & 9 deletions sam-template.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: PlantUML Serverless API
Transform: AWS::Serverless-2016scription: PlantUML Serverless API

Globals:
Function:
Expand Down Expand Up @@ -103,7 +102,7 @@ Resources:
Handler: com.nitor.plantuml.lambda.UIHandler::handleRequest
CodeUri: !Ref paramCodeUri
Timeout: 20
CodeUri: target/plantuml-serverless-0.0.6-SNAPSHOT.jar
CodeUri: target/plantuml-serverless-0.0.6.jar
Events:
GetResource:
Type: Api
Expand All @@ -118,7 +117,7 @@ Resources:
Handler: com.nitor.plantuml.lambda.PngHandler::handleRequest
CodeUri: !Ref paramCodeUri
Timeout: 20
CodeUri: target/plantuml-serverless-0.0.6-SNAPSHOT.jar
CodeUri: target/plantuml-serverless-0.0.6.jar
Events:
GetResource:
Type: Api
Expand All @@ -132,7 +131,7 @@ Resources:
Properties:
Handler: com.nitor.plantuml.lambda.PngHandler::handleRequest
Timeout: 20
CodeUri: target/plantuml-serverless-0.0.6-SNAPSHOT.jar
CodeUri: target/plantuml-serverless-0.0.6.jar
Events:
GetResource:
Type: Api
Expand All @@ -146,7 +145,7 @@ Resources:
Properties:
Handler: com.nitor.plantuml.lambda.SvgHandler::handleRequest
Timeout: 20
CodeUri: target/plantuml-serverless-0.0.6-SNAPSHOT.jar
CodeUri: target/plantuml-serverless-0.0.6.jar
Events:
GetResource:
Type: Api
Expand All @@ -160,7 +159,7 @@ Resources:
Properties:
Handler: com.nitor.plantuml.lambda.TxtHandler::handleRequest
Timeout: 20
CodeUri: target/plantuml-serverless-0.0.6-SNAPSHOT.jar
CodeUri: target/plantuml-serverless-0.0.6.jar
Events:
GetResource:
Type: Api
Expand All @@ -174,7 +173,7 @@ Resources:
Properties:
Handler: com.nitor.plantuml.lambda.MapHandler::handleRequest
Timeout: 20
CodeUri: target/plantuml-serverless-0.0.6-SNAPSHOT.jar
CodeUri: target/plantuml-serverless-0.0.6.jar
Events:
GetResource:
Type: Api
Expand All @@ -188,7 +187,7 @@ Resources:
Properties:
Handler: com.nitor.plantuml.lambda.SyntaxHandler::handleRequest
Timeout: 20
CodeUri: target/plantuml-serverless-0.0.6-SNAPSHOT.jar
CodeUri: target/plantuml-serverless-0.0.6.jar
Events:
GetResource:
Type: Api
Expand Down
2 changes: 1 addition & 1 deletion serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ custom:
- '*/*'

package:
artifact: target/plantuml-serverless-0.0.6-SNAPSHOT.jar
artifact: target/plantuml-serverless-0.0.6.jar

functions:
ui:
Expand Down
2 changes: 1 addition & 1 deletion serverlessrepo/serverlessrepo-publish.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aws --region us-east-1 serverlessrepo create-application-version --application-id arn:aws:serverlessrepo:us-east-1:293246570391:applications/plantuml-render --semantic-version 0.0.5 --source-code-url https://github.com/mmajis/plantuml-serverless/releases/tag/v0.0.5 --template-body file://target/serverless-output.yaml
aws --region us-east-1 serverlessrepo create-application-version --application-id arn:aws:serverlessrepo:us-east-1:293246570391:applications/plantuml-render --semantic-version 0.0.6 --source-code-url https://github.com/mmajis/plantuml-serverless/releases/tag/v0.0.6 --template-body file://target/serverless-output.yaml
2 changes: 1 addition & 1 deletion ui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2012,7 +2012,7 @@
</div>
<div class="footer-copyright">
<div class="container">
<a href="https://github.com/mmajis/plantuml-serverless">PlantUML Serverless</a> v0.0.6-SNAPSHOT is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GPLv3</a> and is powered by <a href="https://www.plantuml.com">PlantUML</a>. UI Based on work by <a href="https://https://github.com/sujoyu/plantuml-previewer">sujoyu</a>.
<a href="https://github.com/mmajis/plantuml-serverless">PlantUML Serverless</a> v0.0.6 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GPLv3</a> and is powered by <a href="https://www.plantuml.com">PlantUML</a>. UI Based on work by <a href="https://https://github.com/sujoyu/plantuml-previewer">sujoyu</a>.
</div>
</div>
</footer>
Expand Down

0 comments on commit 301bf03

Please sign in to comment.