Skip to content

Commit e206572

Browse files
authored
Merge pull request #88 from dokku/master
Release 0.16.0
2 parents ddbae45 + e6dcded commit e206572

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.17.7-buster
1+
FROM golang:1.18.1-buster
22

33
# hadolint ignore=DL3027
44
RUN apt-get update \

Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ MAINTAINER_NAME = Jose Diaz-Gonzalez
66
REPOSITORY = sshcommand
77
HARDWARE = $(shell uname -m)
88
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
9-
BASE_VERSION ?= 0.15.0
9+
BASE_VERSION ?= 0.16.0
1010
IMAGE_NAME ?= $(MAINTAINER)/$(REPOSITORY)
1111
PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish
1212

@@ -150,10 +150,11 @@ release-packagecloud:
150150
@$(MAKE) release-packagecloud-rpm
151151

152152
release-packagecloud-deb: build/deb/$(NAME)_$(VERSION)_all.deb
153-
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/bionic build/deb/$(NAME)_$(VERSION)_all.deb
154-
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/focal build/deb/$(NAME)_$(VERSION)_all.deb
153+
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/bionic build/deb/$(NAME)_$(VERSION)_all.deb
154+
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/focal build/deb/$(NAME)_$(VERSION)_all.deb
155+
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/jammy build/deb/$(NAME)_$(VERSION)_all.deb
155156
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/stretch build/deb/$(NAME)_$(VERSION)_all.deb
156-
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/buster build/deb/$(NAME)_$(VERSION)_all.deb
157+
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/buster build/deb/$(NAME)_$(VERSION)_all.deb
157158
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/bullseye build/deb/$(NAME)_$(VERSION)_all.deb
158159
package_cloud push $(PACKAGECLOUD_REPOSITORY)/raspbian/buster build/deb/$(NAME)_$(VERSION)_all.deb
159160
package_cloud push $(PACKAGECLOUD_REPOSITORY)/raspbian/bullseye build/deb/$(NAME)_$(VERSION)_all.deb

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
22
"name": "sshcommand",
3-
"version": "0.15.0",
3+
"version": "0.16.0",
44
"description": "Turn SSH into a thin client specifically for your app",
55
"global": "true",
66
"install": "cp sshcommand /usr/local/bin && chmod +x /usr/local/bin/sshcommand",
7-
"scripts": [ "sshcommand" ]
8-
}
9-
7+
"scripts": [
8+
"sshcommand"
9+
]
10+
}

0 commit comments

Comments
 (0)