From 6aec40e57060d314e300aab76c69fcdcd7c2def1 Mon Sep 17 00:00:00 2001 From: woylie <13847569+woylie@users.noreply.github.com> Date: Sun, 23 Feb 2025 15:53:15 +0900 Subject: [PATCH 1/4] update readme --- README.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4642946..c96a278 100644 --- a/README.md +++ b/README.md @@ -88,8 +88,5 @@ You can access the application at http://localhost:4000. ## Status -This library has a very narrow purpose, which means that even though it is -young, it is unlikely that new functionality is going to be added or that the -API is going to change. Should you miss something, though, don't hesitate to -open an issue. Any issues and problems that may arise will be dealt with -swiftly. +This library is actively maintained, but given its narrow purpose, it will not +see frequent updates. From 7efd201dec743fcbab5e2fe88486da1d4b6a2341 Mon Sep 17 00:00:00 2001 From: woylie <13847569+woylie@users.noreply.github.com> Date: Sun, 23 Feb 2025 15:58:34 +0900 Subject: [PATCH 2/4] bump version --- CHANGELOG.md | 6 ++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00e3a15..c74c511 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## Unreleased +## [1.0.0] - 2025-02-23 + +### Changed + +- Update dependencies. + ## [0.2.1] - 2023-03-21 ### Changed diff --git a/README.md b/README.md index c96a278..7968397 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Add `ecto_nested_changeset` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:ecto_nested_changeset, "~> 0.2.1"} + {:ecto_nested_changeset, "~> 1.0.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 1a8e2ce..a85fe33 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule EctoNestedChangeset.MixProject do use Mix.Project - @version "0.2.1" + @version "1.0.0" @source_url "https://github.com/woylie/ecto_nested_changeset" def project do From eb1414476bb028970558a02f08709a04a5bfeb76 Mon Sep 17 00:00:00 2001 From: woylie <13847569+woylie@users.noreply.github.com> Date: Sun, 23 Feb 2025 16:02:52 +0900 Subject: [PATCH 3/4] update dependabot config --- .github/dependabot.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c3c5673..984e40c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,15 +3,12 @@ updates: - package-ecosystem: mix directory: "/" schedule: - interval: weekly - day: saturday + interval: monthly - package-ecosystem: mix directory: "/example" schedule: - interval: weekly - day: saturday + interval: monthly - package-ecosystem: github-actions directory: "/" schedule: - interval: weekly - day: saturday + interval: monthly From 9ff70f098d7134cdff1f5c96b128b47043efda75 Mon Sep 17 00:00:00 2001 From: woylie <13847569+woylie@users.noreply.github.com> Date: Sun, 23 Feb 2025 16:02:58 +0900 Subject: [PATCH 4/4] remove renovate config --- renovate.json | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 renovate.json diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 3354efa..0000000 --- a/renovate.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ], - "enabled": true, - "enabledManagers": [ - "github-actions", - "mix" - ], - "reviewersFromCodeOwners": true, - "schedule": [ - "every weekend" - ], - "timezone": "Asia/Tokyo", - "lockFileMaintenance": { - "enabled": true - }, - "rangeStrategy": "widen", - "packageRules": [ - { - "matchUpdateTypes": [ - "minor", - "patch", - "pin", - "digest" - ], - "automerge": true - }, - { - "rangeStrategy": "auto", - "automerge": true, - "matchPackageNames": [ - "/castore/", - "/credo/", - "/dialyxir/", - "/ex_doc/", - "/excoveralls/", - "/mix_audit/", - "/sobelow/", - "/stream_data/" - ] - } - ], - "ignoreDeps": [ - "postgres" - ] -}