From 8d461cd17f65e11b983764b47a1429d2acf09ef9 Mon Sep 17 00:00:00 2001 From: Jesse Adametz Date: Sun, 6 Dec 2020 11:08:19 -0500 Subject: [PATCH 1/2] Add CI workflow --- .github/workflows/ci.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..e8301da --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,36 @@ +name: CI + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + + build: + name: Build + runs-on: ubuntu-latest + steps: + + - name: Set up Go 1.x + uses: actions/setup-go@v2 + with: + go-version: ^1.13 + + - name: Check out code into the Go module directory + uses: actions/checkout@v2 + + - name: Get dependencies + run: | + go get -v -t -d ./... + if [ -f Gopkg.toml ]; then + curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh + dep ensure + fi + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./... From c12337805fe9789452c3bf0d4c446155e01c1404 Mon Sep 17 00:00:00 2001 From: Jesse Adametz Date: Sun, 6 Dec 2020 11:08:39 -0500 Subject: [PATCH 2/2] v1.0.0 --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab15461..04547f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.0] - 2020-12-06 + +### Changed + +- **Breaking:** Support for ignoring multiple Tweet IDs via removal of `IGNOREID` in favor of `IGNOREIDS` + ## [0.2.1] - 2020-11-13 ### Fixed @@ -17,5 +23,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Ability to ignore deleting a specific Tweet +[1.0.0]: https://github.com/jadametz/gotweetdelete/releases/tag/v1.0.0 [0.2.1]: https://github.com/jadametz/gotweetdelete/releases/tag/v0.2.1 [0.2.0]: https://github.com/jadametz/gotweetdelete/releases/tag/v0.2.0