Skip to content

Commit

Permalink
0.4.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bcardarella committed Dec 24, 2024
1 parent 5311c34 commit 0e54451
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [unreleased]
## [0.4.0]

### Added

Expand All @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- async_result/1
- render_upload support in LiveViewNativeTest
- suppport single quotes to wrap attribute values in template parser
- LVN Commands

### Changed

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ To get started with LiveView Native, you'll need to have an existing [Phoenix Ap
Add `live_view_native` to your list of dependencies in the `mix.exs` file. In addition to `live_view_native` you may want to include some additional libraries:

```elixir
{:live_view_native, "~> 0.3.0"},
{:live_view_native_stylesheet, "~> 0.3.0"},
{:live_view_native_swiftui, "~> 0.3.0"},
{:live_view_native_live_form, "~> 0.3.0"}
{:live_view_native, "~> 0.4.0-rc.0"},
{:live_view_native_stylesheet, "~> 0.3.1"},
{:live_view_native_swiftui, "~> 0.4.0-rc.0"},
{:live_view_native_live_form, "~> 0.4.0-rc.0"}
```

Then run:
Expand Down
3 changes: 0 additions & 3 deletions lib/live_view_native/lvn.ex
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,6 @@ defmodule LiveViewNative.LVN do
The combination of `dispatch/1` with `window.addEventListener` is
a powerful mechanism to increase the amount of actions you can trigger
client-side from your LiveView code.
You can also use `window.addEventListener` to listen to events pushed
from the server. You can learn more in our [LVN interoperability guide](lvn-interop.md).
'''

alias LiveViewNative.LVN
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule LiveViewNative.MixProject do
use Mix.Project

@version "0.3.1"
@version "0.4.0-rc.0"
@source_url "https://github.com/liveview-native/live_view_native"

def project do
Expand Down Expand Up @@ -54,7 +54,7 @@ defmodule LiveViewNative.MixProject do
extras: ["README.md"],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}"
source_ref: @version
]
end

Expand Down

0 comments on commit 0e54451

Please sign in to comment.