Skip to content

Commit

Permalink
release v2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mruoss committed Apr 2, 2024
1 parent 3ad638d commit c64f8df
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- ### Added | Changed | Deprecated | Removed | Fixed | Security -->

<!--------------------- Don't add new entries after this line --------------------->

## [2.6.0] - 2024-04-02

### Added

- Many `K8s.Conn.Auth` providers now cache values, and periodically refresh their values. [#302](https://github.com/coryodaniel/k8s/pull/302). because of this clusters using Exec commands to generate auth tokens will see greatly improved performance.

<!--------------------- Don't add new entries after this line --------------------->
## [2.5.0] - 2023-11-12

### Added
Expand Down
13 changes: 7 additions & 6 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
defmodule K8s.MixProject do
use Mix.Project

@source_url "https://github.com/coryodaniel/k8s"
@version "2.5.0"
@app :k8s
@source_url "https://github.com/coryodaniel/#{@app}"
@version "2.6.0"

def project do
[
app: :k8s,
app: @app,
description: "Kubernetes API Client for Elixir",
version: @version,
elixir: "~> 1.14",
Expand Down Expand Up @@ -56,12 +57,12 @@ defmodule K8s.MixProject do

defp package do
[
name: :k8s,
name: @app,
maintainers: ["Cory O'Daniel", "Michael Ruoss"],
licenses: ["MIT"],
links: %{
"GitHub" => @source_url,
"Changelog" => "https://hexdocs.pm/k8s/changelog.html"
"Changelog" => "https://hexdocs.pm/#{@app}/changelog.html"
},
files: ["lib", "mix.exs", "README*", "LICENSE*", "CHANGELOG.md"]
]
Expand Down Expand Up @@ -108,7 +109,7 @@ defmodule K8s.MixProject do
ignore_warnings: ".dialyzer_ignore.exs",
plt_add_apps: [:mix, :eex],
plt_core_path: "priv/plts",
plt_file: {:no_warn, "priv/plts/k8s.plt"}
plt_file: {:no_warn, "priv/plts/#{@app}.plt"}
]
end
end

0 comments on commit c64f8df

Please sign in to comment.