Skip to content
This repository has been archived by the owner on Mar 29, 2023. It is now read-only.

Commit

Permalink
Bump version to v0.2.1
Browse files Browse the repository at this point in the history
Signed-off-by: so0k <vincent.drl@gmail.com>
  • Loading branch information
so0k committed Mar 10, 2020
1 parent 6f0c57f commit e6af935
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ FROM scratch
COPY --from=builder /usr/bin/s3server /usr/bin/s3server
COPY --from=builder /etc/ssl/certs/ /etc/ssl/certs

COPY static /go/static
COPY templates /go/templates
COPY static /static
COPY templates /templates

ENTRYPOINT [ "s3server" ]
CMD [ "--help" ]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ bump-version: ## Bump the version in the version file. Set BUMP to [ patch | maj
echo $(NEW_VERSION) > VERSION
@echo "Updating links to download binaries in README.md"
sed -i s/$(VERSION)/$(NEW_VERSION)/g README.md
git add VERSION README.md
git add _VERSION README.md
git commit -vsam "Bump version to $(NEW_VERSION)"
@echo "Run make tag to create and push the tag for new version $(NEW_VERSION)"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Static server for s3 files.
$ s3server -h

Server to index & view files from s3 bucket.
Version: v0.2.0
Version: v0.2.1
Build: e5a60e2

-bucket string
Expand Down
2 changes: 1 addition & 1 deletion _VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.2.0
v0.2.1
12 changes: 2 additions & 10 deletions templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
<meta charset="utf-8">
<base href="/" >
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Honestbee Terraform Modules</title>
<title>Index</title>
<link rel="icon" type="image/ico" href="/favicon.ico">
<link rel="stylesheet" href="/css/styles.css" />
</head>
<body>
<h1>Honestbee Terraform Modules</h1>
<h1>Index</h1>
<form>
<input name="filter" type="search"><a class="clear">clear</a>
</form>
Expand Down Expand Up @@ -44,14 +44,6 @@ <h1>Honestbee Terraform Modules</h1>
<p>Last Updated: {{ .LastUpdated }}</p>
</div><!--/.footer-->
<script src="/js/scripts.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-29404280-12', 'jessfraz.com');
ga('send', 'pageview');
</script>
</body>
</html>
{{end}}

0 comments on commit e6af935

Please sign in to comment.