Skip to content

Commit c0c0140

Browse files
committed
chore: bump both packages to v0.1.0-rc
Set durable and durable_dashboard @Version to 0.1.0-rc and bump the dashboard's published durable requirement to ~> 0.1.0-rc. Update the README and AI-workflows guide install snippets to match so the release candidate is installable from Hex.
1 parent cc1127e commit c0c0140

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

durable/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ A durable, resumable workflow engine for Elixir. Similar to Temporal/Inngest.
2121

2222
```elixir
2323
def deps do
24-
[{:durable, "~> 0.0.0-alpha"}]
24+
[{:durable, "~> 0.1.0-rc"}]
2525
end
2626
```
2727

durable/guides/ai_workflows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Build reliable AI agent workflows with automatic retries, state persistence, and
1010
# mix.exs
1111
defp deps do
1212
[
13-
{:durable, "~> 0.1.0"},
13+
{:durable, "~> 0.1.0-rc"},
1414
{:req_llm, "~> 1.1"}
1515
]
1616
end

durable/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ defmodule Durable.MixProject do
1616
{shared, _bindings} = Code.eval_file(shared_dst)
1717

1818
# Versioned independently of durable_dashboard.
19-
@version "0.0.0-alpha"
19+
@version "0.1.0-rc"
2020
@elixir_requirement Keyword.fetch!(shared, :elixir)
2121
@source_url Keyword.fetch!(shared, :source_url)
2222
@homepage_url Keyword.fetch!(shared, :homepage_url)

durable_dashboard/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ Add `durable_dashboard` alongside `durable`:
3131
```elixir
3232
def deps do
3333
[
34-
{:durable, "~> 0.0.0-alpha"},
35-
{:durable_dashboard, "~> 0.0.0-alpha"}
34+
{:durable, "~> 0.1.0-rc"},
35+
{:durable_dashboard, "~> 0.1.0-rc"}
3636
]
3737
end
3838
```

durable_dashboard/mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ defmodule DurableDashboard.MixProject do
1616
{shared, _bindings} = Code.eval_file(shared_dst)
1717

1818
# Versioned independently of durable.
19-
@version "0.0.0-alpha"
19+
@version "0.1.0-rc"
2020

2121
# Hex requirement for durable when this package is published. In the monorepo
2222
# durable is a path dependency (see durable_dep/0); the published package must
2323
# depend on a released Hex version instead. durable and durable_dashboard
2424
# version independently, so bump this to match the durable release you target.
25-
@durable_version "~> 0.0.0-alpha"
25+
@durable_version "~> 0.1.0-rc"
2626

2727
@elixir_requirement Keyword.fetch!(shared, :elixir)
2828
@source_url Keyword.fetch!(shared, :source_url)

0 commit comments

Comments
 (0)