From c2b86dd28b981e2f85ae99e4a63b55c1ec2fcafa Mon Sep 17 00:00:00 2001 From: ruby-automation <171511148+ruby-automation@users.noreply.github.com> Date: Sat, 8 Aug 2026 12:55:31 -0400 Subject: [PATCH] chore(main): release 0.1.1 --- .release-please-manifest.json | 2 +- .version.txt | 2 +- CHANGELOG.md | 25 +++++++++++++++++++++++++ app/mix.exs | 2 +- 4 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 466df71..a915e8c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0" + ".": "0.1.1" } diff --git a/.version.txt b/.version.txt index 6e8bf73..17e51c3 100644 --- a/.version.txt +++ b/.version.txt @@ -1 +1 @@ -0.1.0 +0.1.1 diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e1c35de --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,25 @@ +# Changelog + +## [0.1.1](https://github.com/rubyists/linear-cli-ex/compare/v0.1.0...v0.1.1) (2026-08-08) + + +### Features + +* **api:** add LinearCli.Api GraphQL client (Phase 1) ([723f3f6](https://github.com/rubyists/linear-cli-ex/commit/723f3f60e3d137b69e7919c0ffc28099598086e5)) +* **cli:** add issue create/develop/pr/take/update write commands (Phase 6) ([1649618](https://github.com/rubyists/linear-cli-ex/commit/1649618fec1b43da32f8975471dc1905540c21c9)) +* initial commit with ash submodule ([c2ceafb](https://github.com/rubyists/linear-cli-ex/commit/c2ceafb8007360eb1b6f05fed0512c49dbbcfc19)) +* **linear:** add Ash domain resources for Issue/Project/Team/User/Label/WorkflowState/Comment (Phase 2) ([e2a27f3](https://github.com/rubyists/linear-cli-ex/commit/e2a27f3258e0951f83aa0b997f3912327442232a)) +* **oban:** add scheduled monthly project rollover (Phase 7) ([11afb43](https://github.com/rubyists/linear-cli-ex/commit/11afb43e2b30f55db5dcceba72020fabb5978c52)) +* phase 4 from initial plan -> complete ([012866e](https://github.com/rubyists/linear-cli-ex/commit/012866edc7d61ee403d477221490fc493fda2bdf)) +* phase 8 - packaging, releasing, and CI ([#1](https://github.com/rubyists/linear-cli-ex/issues/1)) ([905c238](https://github.com/rubyists/linear-cli-ex/commit/905c238967f29c59c1d02669138ca8998b414e38)) +* scaffold Elixir port and enforce conventional commits ([a4d03a0](https://github.com/rubyists/linear-cli-ex/commit/a4d03a0e8f5fe94d2f699aecbc9a0e128dc02689)) + + +### Bug Fixes + +* **cli:** reject unrecognized flags instead of treating them as issue ids ([#2](https://github.com/rubyists/linear-cli-ex/issues/2)) ([#4](https://github.com/rubyists/linear-cli-ex/issues/4)) ([e697ff6](https://github.com/rubyists/linear-cli-ex/commit/e697ff60d0d366efa70325acc9861012ca1aaffe)) + + +### Performance Improvements + +* **linear:** fan out find-by-ids and per-team project fetches (Phase 5) ([fb00153](https://github.com/rubyists/linear-cli-ex/commit/fb00153de3aae7490331e8b6413bb2bee18ee473)) diff --git a/app/mix.exs b/app/mix.exs index ac7b7cf..9fbb91b 100644 --- a/app/mix.exs +++ b/app/mix.exs @@ -5,7 +5,7 @@ defmodule LinearCli.MixProject do [ app: :linear_cli, # x-release-please-start-version - version: "0.1.0", + version: "0.1.1", # x-release-please-end elixir: "~> 1.20", start_permanent: Mix.env() == :prod,