Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion guides/ai_development/ai-development.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Example: "Create an export action that lets users download posts as CSV"

The `upgrade` skill assists with Backpex version upgrades. It reads the relevant upgrade guides, identifies breaking changes, and applies migrations systematically.

Example: "Upgrade Backpex from 0.16 to 0.18"
Example: "Upgrade Backpex from 0.16 to 0.19"

## Invoking Skills

Expand Down
2 changes: 1 addition & 1 deletion guides/get_started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ In your `mix.exs`:
defp deps do
[
...
{:backpex, "~> 0.13.0"}
{:backpex, "~> 0.19"}
]
end
```
Expand Down
6 changes: 3 additions & 3 deletions skills/upgrade/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ You are an expert at upgrading Backpex versions. When the user wants to upgrade,
Check `mix.exs` for the Backpex dependency:

```elixir
{:backpex, "~> 0.17.0"}
{:backpex, "~> 0.19.0"}
```

## Upgrade Guides Location
Expand Down Expand Up @@ -45,11 +45,11 @@ All upgrade guides are at `guides/upgrading/` in the Backpex repository (also av

## Upgrade Process

1. **Read ALL upgrade guides** between current and target version. For example, upgrading from 0.15 to 0.18 requires reading v0.16, v0.17, and v0.18 guides.
1. **Read ALL upgrade guides** between current and target version. For example, upgrading from 0.15 to 0.19 requires reading v0.16, v0.17, v0.18, and v0.19 guides.

2. **Bump the dependency** in `mix.exs`:
```elixir
{:backpex, "~> 0.18.0"}
{:backpex, "~> 0.19.0"}
```

3. **Run `mix deps.get`** to fetch the new version.
Expand Down
Loading