Skip to content

Commit

Permalink
Release 0.3.2
Browse files Browse the repository at this point in the history
Remove stretch, as it's now dead.
  • Loading branch information
Ryan Barry committed May 13, 2023
1 parent bb474a2 commit 39a4ff0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 74 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.1-dev
0.3.2-dev
2 changes: 1 addition & 1 deletion cmd/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package version

var (
// Version of the product
Version = "0.3.1"
Version = "0.3.2"
// PreRelease is set during the build
PreRelease = ""
// GitCommit is set during the build
Expand Down
2 changes: 1 addition & 1 deletion packaging/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ ARCH=$(shell uname -m)
GO_VERSION:=1.18.3
PLATFORM=cri-dockerd
SHELL:=/bin/bash
VERSION?=0.3.1-dev
VERSION?=0.3.2-dev

export PLATFORM
6 changes: 3 additions & 3 deletions packaging/deb/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ include ../common.mk
APP_DIR:=$(realpath $(CURDIR)/../../)
GITCOMMIT?=$(shell cd $(APP_DIR) && git rev-parse --short HEAD)
GO_BASE_IMAGE=golang
GO_IMAGE=$(GO_BASE_IMAGE):$(GO_VERSION)-stretch
GO_IMAGE=$(GO_BASE_IMAGE):$(GO_VERSION)-buster
DEB_VERSION=$(shell ./gen-deb-ver $(APP_DIR) "$(VERSION)")
CHOWN:=docker run --rm -v $(CURDIR):/v -w /v alpine chown
EPOCH?=0
Expand Down Expand Up @@ -36,10 +36,10 @@ RUN=docker run --rm -i \
SOURCE_FILES=app.tgz cri-docker.service cri-docker.socket
SOURCES=$(addprefix sources/, $(SOURCE_FILES))

DEBIAN_VERSIONS := debian-stretch debian-buster debian-bullseye
DEBIAN_VERSIONS := debian-buster debian-bullseye
#UBUNTU_VERSIONS := ubuntu-xenial ubuntu-bionic ubuntu-cosmic ubuntu-disco ubuntu-eoan
UBUNTU_VERSIONS := ubuntu-bionic ubuntu-focal ubuntu-jammy
RASPBIAN_VERSIONS := raspbian-stretch raspbian-buster raspbian-bullseye
RASPBIAN_VERSIONS := raspbian-buster raspbian-bullseye
DISTROS := $(DEBIAN_VERSIONS) $(UBUNTU_VERSIONS) $(RASPBIAN_VERSIONS)

.PHONY: help
Expand Down
34 changes: 0 additions & 34 deletions packaging/deb/debian-stretch/Dockerfile

This file was deleted.

33 changes: 0 additions & 33 deletions packaging/deb/raspbian-stretch/Dockerfile

This file was deleted.

2 changes: 1 addition & 1 deletion packaging/rpm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ include ../common.mk
APP_DIR:=$(realpath $(CURDIR)/../../)
STATIC_VERSION:=$(shell ../static/gen-static-ver $(APP_DIR) $(VERSION))
GO_BASE_IMAGE=golang
GO_IMAGE?=$(GO_BASE_IMAGE):$(GO_VERSION)-stretch
GO_IMAGE?=$(GO_BASE_IMAGE):$(GO_VERSION)-buster
GEN_RPM_VER=$(shell ./gen-rpm-ver $(APP_DIR) $(VERSION))
CRI_DOCKER_GITCOMMIT?=$(word 3,$(GEN_RPM_VER))
CHOWN=docker run --rm -i -v $(CURDIR):/v -w /v alpine chown
Expand Down

0 comments on commit 39a4ff0

Please sign in to comment.