From 265926958a8a13b6713eb70f474e1fbb68783a64 Mon Sep 17 00:00:00 2001 From: Michael Ruoss Date: Tue, 14 Nov 2023 08:34:26 +0100 Subject: [PATCH] release 1.2.0 --- .github/renovate.json5 | 26 +++++++++----------------- CHANGELOG.md | 6 ++++-- README.md | 8 ++++++++ mix.exs | 2 +- 4 files changed, 22 insertions(+), 20 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 4efd348..56d9b3c 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,22 +1,14 @@ { - extends: ['config:base'], - dependencyDashboard: true, - ignoreDeps: [], - rebaseWhen: 'behind-base-branch', - branchConcurrentLimit: 10, - lockFileMaintenance: { - enabled: true, - automerge: true, - }, - addLabels: ['renovate-update'], + extends: [ + 'config:base', + ':automergeMinor', + ':automergePr', + ':dependencyDashboard', + ':label(renovate-update)', + ':rebaseStalePrs', + ':prConcurrentLimit10', + ], cdnurl: { fileMatch: ['^assets/.*\\.tsx?$'], }, - packageRules: [ - { - matchUpdateTypes: ['minor', 'patch'], - matchCurrentVersion: '!/^0/', - automerge: true, - }, - ], } diff --git a/CHANGELOG.md b/CHANGELOG.md index b7549c9..85d98d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,13 +10,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). + + +## [1.2.0] - 2023-11-014 + ### Added - Basic Integration test using Playwright - Better support for roles with fewer permissions than (cluster-) admin. [#26](https://github.com/mruoss/kino_k8s/issues/26) - - ## [1.1.0] - 2023-11-03 ### Added diff --git a/README.md b/README.md index 461fd70..eba209c 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,18 @@ A Livebook Kino for learning to use the k8s Elixir library. ## Installation +Install the latest 1.x version: + ```elixir Mix.install([{:kino_k8s, "~> 1.0"}]) ``` +To install the latest from `main` branch: + +```elixir +Mix.install([{:kino_k8s, github: "mruoss/kino_k8s"}]) +``` + ## Smart Cells `kino_k8s` brings the following Smart Cells to your [Livebook](https://livebook.dev): diff --git a/mix.exs b/mix.exs index c129a34..fdfbd84 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule KinoK8s.MixProject do use Mix.Project @source_url "https://github.com/mruoss/kino_k8s" - @version "1.1.0" + @version "1.2.0" def project do [