From 65104790fa5694bc5c235f9d2a33e4947df10522 Mon Sep 17 00:00:00 2001 From: "m.kindritskiy" Date: Tue, 29 Apr 2025 21:45:05 +0300 Subject: [PATCH] tidy dependencies --- config/config/config_test.go | 2 +- docs/docs/changelog.md | 6 +++++- docs/docusaurus.config.js | 1 + go.mod | 1 - go.sum | 2 -- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/config/config/config_test.go b/config/config/config_test.go index ab21f755..aec94442 100644 --- a/config/config/config_test.go +++ b/config/config/config_test.go @@ -57,7 +57,7 @@ func TestParseConfig(t *testing.T) { env := cfg.Env.Dump() expected := map[string]string{ - "FOO": "BAR", + "FOO": "BAR", "HELLO": "WORLD", } if !maps.Equal(env, expected) { diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index 1622972b..0370222b 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -5,13 +5,17 @@ title: Changelog ## [Unreleased](https://github.com/lets-cli/lets/releases/tag/v0.0.X) -## [0.0.56](https://github.com/lets-cli/lets/releases/tag/v0.0.56) +## [0.0.57](https://github.com/lets-cli/lets/releases/tag/v0.0.57) * `[Dependency]` update go to `1.24` * `[Added]` support custom top-level keywords that start with `x-` * `[Added]` check for invalid top-level keywords during config parsing * `[Added]` support YAML aliases in `env` - env will be merged aliases mapping +## [0.0.56](https://github.com/lets-cli/lets/releases/tag/v0.0.56) + +This tag is not released due to build issues + ## [0.0.55](https://github.com/lets-cli/lets/releases/tag/v0.0.55) * `[Added]` `lets self` command that is ment to be a new home for all lets own commands such as `completions` (soon) or `lsp` diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 98ef9f8c..a2bf5af6 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -18,6 +18,7 @@ module.exports = { }, items: [ {to: 'docs/quick_start', label: 'Docs', position: 'right'}, + {to: 'docs/changelog', label: 'Changelog', position: 'right'}, {to: 'blog', label: 'Blog', position: 'right'}, { href: 'https://github.com/lets-cli/lets', diff --git a/go.mod b/go.mod index 43dd3ed3..1db7d1bb 100644 --- a/go.mod +++ b/go.mod @@ -45,7 +45,6 @@ require ( github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 github.com/lithammer/dedent v1.1.0 github.com/spf13/pflag v1.0.5 // indirect - golang.org/x/exp v0.0.0-20221028150844-83b7d23a625f golang.org/x/sys v0.14.0 // indirect gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect gopkg.in/yaml.v3 v3.0.1 diff --git a/go.sum b/go.sum index 274e5077..a42168e8 100644 --- a/go.sum +++ b/go.sum @@ -142,8 +142,6 @@ golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.15.0 h1:frVn1TEaCEaZcn3Tmd7Y2b5KKPaZ+I32Q2OA3kYp5TA= golang.org/x/crypto v0.15.0/go.mod h1:4ChreQoLWfG3xLDer1WdlH5NdlQ3+mwnQq1YTKY+72g= -golang.org/x/exp v0.0.0-20221028150844-83b7d23a625f h1:Al51T6tzvuh3oiwX11vex3QgJ2XTedFPGmbEVh8cdoc= -golang.org/x/exp v0.0.0-20221028150844-83b7d23a625f/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/net v0.0.0-20180406214816-61147c48b25b/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20200904194848-62affa334b73/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=