Skip to content

Commit

Permalink
Merge pull request #12 from jadametz/v1.0.0-release
Browse files Browse the repository at this point in the history
v1.0.0 release
  • Loading branch information
jadametz authored Dec 6, 2020
2 parents 13930a2 + c123378 commit 0111f1f
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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 ./...
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 0111f1f

Please sign in to comment.