Skip to content

Commit

Permalink
Merge pull request #99 from gliderlabs/master
Browse files Browse the repository at this point in the history
Release 0.10.0
  • Loading branch information
josegonzalez authored Aug 6, 2023
2 parents bc921b7 + 7fa8ef9 commit 0360b07
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
build:
name: build
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
fail-fast: true
env:
Expand Down
24 changes: 20 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,30 @@
# Change Log
All notable changes to this project will be documented in this file.

## [v0.10.0](https://github.com/gliderlabs/registrator/compare/v0.9.0...v0.10.0) - 2023-08-06

### Added

- #82 @josegonzalez Add support for raspbian/bullseye on arm64 architectures
- #98 @Coffee2CodeNL: Add Bookworm Support

### Changed

- #81 @dependabot: chore(deps): bump golang from 1.18.1-buster to 1.18.2-buster
- #83 @josegonzalez Publish arm64 packages for debian instead of raspbian
- #94 @dependabot: chore(deps): bump golang from 1.18.2-buster to 1.20.1-buster
- #95 @dependabot: chore(deps): bump golang from 1.20.1-buster to 1.20.4-buster
- #96 @josegonzalez chore: update runner to use ubuntu 20.04
- #97 @dependabot: chore(deps): bump golang from 1.20.4-buster to 1.20.5-buster

## [v0.9.0](https://github.com/gliderlabs/registrator/compare/v0.8.1...v0.9.0) - 2022-05-10

#### Added
### Added

- #74 @josegonzalez Publish armhf package to ubuntu/focal
- #78 @josegonzalez Publish package for Ubuntu 22.04

#### Changed
### Changed

- #73 @dependabot chore(deps): bump golang from 1.17.7-buster to 1.17.8-buster
- #76 @dependabot chore(deps): bump golang from 1.17.8-buster to 1.18.1-buster
Expand All @@ -17,11 +33,11 @@ All notable changes to this project will be documented in this file.

## [v0.8.1](https://github.com/gliderlabs/registrator/compare/v0.8.0...v0.8.1) - 2022-03-05

#### Added
### Added

- #70: RyanGaudion Add Raspbian Bullseye

#### Changed
### Changed

- #69: @dependabot chore(deps): bump golang from 1.17.6-buster to 1.17.7-buster

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18.1-buster
FROM golang:1.20.5-buster

RUN apt-get update \
&& apt install apt-transport-https build-essential curl gnupg2 jq lintian rpm rsync rubygems-integration ruby-dev ruby -qy \
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MAINTAINER_NAME = Jose Diaz-Gonzalez
REPOSITORY = sigil
HARDWARE = $(shell uname -m)
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
BASE_VERSION ?= 0.9.0
BASE_VERSION ?= 0.10.0
IMAGE_NAME ?= $(MAINTAINER)/$(REPOSITORY)
PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish
BINARY_NAME = sigil
Expand Down Expand Up @@ -212,8 +212,11 @@ release-packagecloud-deb: build/deb/$(NAME)_$(VERSION)_amd64.deb build/deb/$(NAM
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/stretch build/deb/$(NAME)_$(VERSION)_amd64.deb
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/buster build/deb/$(NAME)_$(VERSION)_amd64.deb
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/bullseye build/deb/$(NAME)_$(VERSION)_amd64.deb
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/bookworm build/deb/$(NAME)_$(VERSION)_amd64.deb
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/focal build/deb/$(NAME)_$(VERSION)_arm64.deb
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/jammy build/deb/$(NAME)_$(VERSION)_arm64.deb
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/bullseye build/deb/$(NAME)_$(VERSION)_arm64.deb
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/bookworm build/deb/$(NAME)_$(VERSION)_arm64.deb
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/focal build/deb/$(NAME)_$(VERSION)_armhf.deb
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/jammy build/deb/$(NAME)_$(VERSION)_armhf.deb
package_cloud push $(PACKAGECLOUD_REPOSITORY)/raspbian/buster build/deb/$(NAME)_$(VERSION)_armhf.deb
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ for any text processing.
## Getting Sigil

```shell
curl -L "https://github.com/gliderlabs/sigil/releases/download/v0.9.0/gliderlabs-sigil_0.9.0_$(uname -sm|tr \ _).tgz" \
curl -L "https://github.com/gliderlabs/sigil/releases/download/v0.10.0/gliderlabs-sigil_0.10.0_$(uname -sm|tr \ _).tgz" \
| tar -zxC /usr/local/bin
```

Expand Down

0 comments on commit 0360b07

Please sign in to comment.