Skip to content

Commit

Permalink
Version 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mmajis committed Apr 29, 2018
1 parent b9affeb commit c5a10d1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 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.5-SNAPSHOT",
"version": "0.0.5",
"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 @@ -4,7 +4,7 @@
<groupId>com.nitor</groupId>
<artifactId>plantuml-serverless</artifactId>
<packaging>jar</packaging>
<version>0.0.5-SNAPSHOT</version>
<version>0.0.5</version>
<name>PlantUML Serverless API</name>

<properties>
Expand Down
14 changes: 7 additions & 7 deletions sam-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Resources:
Handler: com.nitor.plantuml.lambda.UIHandler::handleRequest
CodeUri: !Ref paramCodeUri
Timeout: 20
CodeUri: target/plantuml-serverless-0.0.5-SNAPSHOT.jar
CodeUri: target/plantuml-serverless-0.0.5.jar
Events:
GetResource:
Type: Api
Expand All @@ -118,7 +118,7 @@ Resources:
Handler: com.nitor.plantuml.lambda.PngHandler::handleRequest
CodeUri: !Ref paramCodeUri
Timeout: 20
CodeUri: target/plantuml-serverless-0.0.5-SNAPSHOT.jar
CodeUri: target/plantuml-serverless-0.0.5.jar
Events:
GetResource:
Type: Api
Expand All @@ -132,7 +132,7 @@ Resources:
Properties:
Handler: com.nitor.plantuml.lambda.PngHandler::handleRequest
Timeout: 20
CodeUri: target/plantuml-serverless-0.0.5-SNAPSHOT.jar
CodeUri: target/plantuml-serverless-0.0.5.jar
Events:
GetResource:
Type: Api
Expand All @@ -146,7 +146,7 @@ Resources:
Properties:
Handler: com.nitor.plantuml.lambda.SvgHandler::handleRequest
Timeout: 20
CodeUri: target/plantuml-serverless-0.0.5-SNAPSHOT.jar
CodeUri: target/plantuml-serverless-0.0.5.jar
Events:
GetResource:
Type: Api
Expand All @@ -160,7 +160,7 @@ Resources:
Properties:
Handler: com.nitor.plantuml.lambda.TxtHandler::handleRequest
Timeout: 20
CodeUri: target/plantuml-serverless-0.0.5-SNAPSHOT.jar
CodeUri: target/plantuml-serverless-0.0.5.jar
Events:
GetResource:
Type: Api
Expand All @@ -174,7 +174,7 @@ Resources:
Properties:
Handler: com.nitor.plantuml.lambda.MapHandler::handleRequest
Timeout: 20
CodeUri: target/plantuml-serverless-0.0.5-SNAPSHOT.jar
CodeUri: target/plantuml-serverless-0.0.5.jar
Events:
GetResource:
Type: Api
Expand All @@ -188,7 +188,7 @@ Resources:
Properties:
Handler: com.nitor.plantuml.lambda.SyntaxHandler::handleRequest
Timeout: 20
CodeUri: target/plantuml-serverless-0.0.5-SNAPSHOT.jar
CodeUri: target/plantuml-serverless-0.0.5.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.5-SNAPSHOT.jar
artifact: target/plantuml-serverless-0.0.5.jar

functions:
ui:
Expand Down
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.5-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.5 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 c5a10d1

Please sign in to comment.