Skip to content

Commit

Permalink
release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mruoss committed Nov 14, 2023
1 parent c7a4f6a commit 2659269
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 20 deletions.
26 changes: 9 additions & 17 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -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,
},
],
}
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

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

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

## [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)

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

## [1.1.0] - 2023-11-03

### Added
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
[
Expand Down

0 comments on commit 2659269

Please sign in to comment.