Skip to content

Commit 8efdce3

Browse files
chore(main): release 2.0.0 (#84)
Co-authored-by: flagsmith-engineering[bot] <216534828+flagsmith-engineering[bot]@users.noreply.github.com>
1 parent 39ae3cd commit 8efdce3

6 files changed

Lines changed: 43 additions & 6 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{".":"2.0.0-beta.3"}
1+
{".":"2.0.0"}

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
11
# Changelog
22

3+
## [2.0.0](https://github.com/Flagsmith/flagsmith-cli/compare/v2.0.0-beta.3...v2.0.0) (2026-08-21)
4+
5+
6+
### Features
7+
8+
* Add reason, variant to `flagsmith eval` output ([#74](https://github.com/Flagsmith/flagsmith-cli/issues/74)) ([52d67c3](https://github.com/Flagsmith/flagsmith-cli/commit/52d67c3a5b93de9c45cb81a842d5d7af1a6d9cd5))
9+
* Migrate to the new update-flag contract, and `flag update --weight` ([#92](https://github.com/Flagsmith/flagsmith-cli/issues/92)) ([c0a5cec](https://github.com/Flagsmith/flagsmith-cli/commit/c0a5cec5a540c3b194efd60c3bb31a9210066c8a))
10+
11+
12+
### Bug Fixes
13+
14+
* **auth:** Self-hosted instances dead-end with no usable credential ([#86](https://github.com/Flagsmith/flagsmith-cli/issues/86)) ([777b918](https://github.com/Flagsmith/flagsmith-cli/commit/777b9186fa3838a4e2a1748bad97bf41c04f5e93))
15+
* **install:** Warn when another flagsmith on PATH may shadow the install ([#97](https://github.com/Flagsmith/flagsmith-cli/issues/97)) ([9ad9979](https://github.com/Flagsmith/flagsmith-cli/commit/9ad9979e71127f22dfc7b76e6414ae514ad94e75))
16+
17+
18+
### CI
19+
20+
* Add Renovate configuration ([#72](https://github.com/Flagsmith/flagsmith-cli/issues/72)) ([59772ef](https://github.com/Flagsmith/flagsmith-cli/commit/59772ef4c6146d4558d6413888c50223b61efb7f))
21+
* publish a Homebrew cask on release ([#83](https://github.com/Flagsmith/flagsmith-cli/issues/83)) ([86b189b](https://github.com/Flagsmith/flagsmith-cli/commit/86b189b4833cb07b5dab9403effe0ffb4412da59))
22+
* Publish npm packages ([#96](https://github.com/Flagsmith/flagsmith-cli/issues/96)) ([400d4ef](https://github.com/Flagsmith/flagsmith-cli/commit/400d4ef10e94036d0e9ddf6eb73279ff2cd9a4cb))
23+
24+
25+
### Docs
26+
27+
* Publish the command reference to GitHub Pages ([#100](https://github.com/Flagsmith/flagsmith-cli/issues/100)) ([39ae3cd](https://github.com/Flagsmith/flagsmith-cli/commit/39ae3cdc148fbe7c27bf901e9e1c77a29ce0c391))
28+
29+
30+
### Dependency Updates
31+
32+
* update module golang.org/x/net to v0.56.0 [security] ([#88](https://github.com/Flagsmith/flagsmith-cli/issues/88)) ([110158a](https://github.com/Flagsmith/flagsmith-cli/commit/110158ae584035f9d253c98d195af9b2d1e16f31))
33+
* update module golang.org/x/text to v0.39.0 [security] ([#89](https://github.com/Flagsmith/flagsmith-cli/issues/89)) ([0fcd1d8](https://github.com/Flagsmith/flagsmith-cli/commit/0fcd1d8b620d5401c677d2525bae2278c9c0422b))
34+
35+
36+
### Other
37+
38+
* Graduate to a stable 2.0.0 release ([#98](https://github.com/Flagsmith/flagsmith-cli/issues/98)) ([d7fcce9](https://github.com/Flagsmith/flagsmith-cli/commit/d7fcce9a370ab7c98e71bb801620af4226c5dbc7))
39+
340
## [2.0.0-beta.3](https://github.com/Flagsmith/flagsmith-cli/compare/v2.0.0-beta.2...v2.0.0-beta.3) (2026-08-11)
441

542

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Installs to `$HOME/.local/bin` and adds it to your `PATH`. Options:
1919
<!-- x-release-please-start-version -->
2020

2121
```sh
22-
curl -fsSL https://get.flagsmith.com | sh -s -- --version v2.0.0-beta.3 --bin-dir /usr/local/bin --no-modify-path
22+
curl -fsSL https://get.flagsmith.com | sh -s -- --version v2.0.0 --bin-dir /usr/local/bin --no-modify-path
2323
curl -fsSL https://get.flagsmith.com | sh -s -- --help
2424
```
2525

@@ -41,7 +41,7 @@ Using npm:
4141
npm install -g @flagsmith/cli
4242
```
4343

44-
Alternatively, `go install github.com/Flagsmith/flagsmith-cli/v2@v2.0.0-beta.3` (installs as `flagsmith-cli`), or grab an archive from [Releases](https://github.com/Flagsmith/flagsmith-cli/releases). <!-- x-release-please-version -->
44+
Alternatively, `go install github.com/Flagsmith/flagsmith-cli/v2@v2.0.0` (installs as `flagsmith-cli`), or grab an archive from [Releases](https://github.com/Flagsmith/flagsmith-cli/releases). <!-- x-release-please-version -->
4545

4646
## Build
4747

install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ $ErrorActionPreference = 'Stop'
3030
# Invoke-WebRequest spends most of its time drawing the progress bar.
3131
$ProgressPreference = 'SilentlyContinue'
3232

33-
$DefaultVersion = 'v2.0.0-beta.3' # x-release-please-version
33+
$DefaultVersion = 'v2.0.0' # x-release-please-version
3434

3535
$Repo = 'Flagsmith/flagsmith-cli'
3636
$ExeName = 'flagsmith.exe'

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# the version as a flag or export it first.
99
set -eu
1010

11-
DEFAULT_VERSION="v2.0.0-beta.3" # x-release-please-version
11+
DEFAULT_VERSION="v2.0.0" # x-release-please-version
1212

1313
REPO="Flagsmith/flagsmith-cli"
1414
BIN_NAME="flagsmith"

website/hugo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ menu:
4545
icon: github
4646

4747
params:
48-
version: "v2.0.0-beta.3" # x-release-please-version
48+
version: "v2.0.0" # x-release-please-version
4949
description: The Flagsmith command-line interface — manage flags, segments and environments from your terminal.
5050
navbar:
5151
displayTitle: true

0 commit comments

Comments
 (0)