From 240a493ad6aaa678131096c87d4ba626794d5cbb Mon Sep 17 00:00:00 2001 From: Neil O'Toole Date: Sun, 20 Nov 2022 08:14:53 -0700 Subject: [PATCH] Get rid of dead script files; update CHANGELOG.md --- CHANGELOG.md | 54 ++++++++++++++++++++++++++++++++++++++++--------- add-repo-apt.sh | 17 ---------------- add-repo-yum.sh | 12 ----------- 3 files changed, 44 insertions(+), 39 deletions(-) delete mode 100755 add-repo-apt.sh delete mode 100755 add-repo-yum.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index 210afe3b..63847316 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,53 @@ -# CHANGELOG +# Changelog + +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). + +## [v0.16.0] - 2022-11-20 + +### Added + +- `install.sh` install script + +### Changed + +- Improved GH workflow + + +## [v0.15.11] - 2022-11-06 + +### Changed + +- Yet more changes to GitHub workflow. + + +## [v0.15.4] - 2021-09-18 + +### Changed -## v0.15.4 - Bug fixes -## v0.15.3 +## [v0.15.3] - 2021-03-13 + +### Changed + - [#91](https://github.com/neilotoole/sq/pull/91): MySQL driver options no longer stripped -## v0.15.2 +## [v0.15.2] - 2021-03-08 + +### Changed + - [#89](https://github.com/neilotoole/sq/pull/89): Bug with SQL generated for joins. -## v0.15.1 -- [#83](https://github.com/neilotoole/sq/pull/83): `sq ping` now has `--all` flag instead of `all` arg. -## v0.15.0 -- [#81](https://github.com/neilotoole/sq/pull/81): Shell completion +[v0.16.0]: https://github.com/neilotoole/sq/compare/v0.15.11...v0.16.0 +[v0.15.11]: https://github.com/neilotoole/sq/compare/v0.15.4...v0.15.11 +[v0.15.4]: https://github.com/neilotoole/sq/compare/v0.15.3...v0.15.4 +[v0.15.3]: https://github.com/neilotoole/sq/compare/v0.15.2...v0.15.3 +[v0.15.2]: https://github.com/neilotoole/sq/releases/tag/v0.15.2 -## v0.14.9 -- [#82](https://github.com/neilotoole/sq/issues/82): XLSX empty sheets + + +# CHANGELOG diff --git a/add-repo-apt.sh b/add-repo-apt.sh deleted file mode 100755 index 9ba898e0..00000000 --- a/add-repo-apt.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env sh -# This script adds the "sq" repo to apt, but does not install "sq". -# To install, run - -apt update -y && apt install -y curl gpg - -curl -fsSL https://apt.fury.io/neilotoole/gpg.key | gpg --dearmor -o /usr/share/keyrings/sq.gpg - -echo "deb [signed-by=/usr/share/keyrings/sq.gpg] https://apt.fury.io/neilotoole/ * *" > /etc/apt/sources.list.d/sq.list - -cat < /etc/apt/preferences.d/sq -Package: sq -Pin: origin apt.fury.io -Pin-Priority: 501 -EOF - -apt update -y diff --git a/add-repo-yum.sh b/add-repo-yum.sh deleted file mode 100755 index e9360c04..00000000 --- a/add-repo-yum.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env sh -# This script adds the "sq" repo to yum. - -cat < /etc/yum.repos.d/sq.repo -[sq] -name=sq -baseurl=https://yum.fury.io/neilotoole/ -enabled=1 -gpgcheck=0 -gpgkey=https://apt.fury.io/neilotoole/gpg.key -EOF -