From 0e544510fc14bb26d3f0d027c6fe07d68369fee6 Mon Sep 17 00:00:00 2001 From: Brian Cardarella Date: Tue, 24 Dec 2024 17:55:41 -0500 Subject: [PATCH] 0.4.0-rc.0 --- CHANGELOG.md | 3 ++- README.md | 8 ++++---- lib/live_view_native/lvn.ex | 3 --- mix.exs | 4 ++-- 4 files changed, 8 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a19710..c999b41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/README.md b/README.md index ae94c31..9c8d7b5 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/lib/live_view_native/lvn.ex b/lib/live_view_native/lvn.ex index 7ff7666..2d25d05 100644 --- a/lib/live_view_native/lvn.ex +++ b/lib/live_view_native/lvn.ex @@ -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 diff --git a/mix.exs b/mix.exs index 70b5a76..8e01618 100644 --- a/mix.exs +++ b/mix.exs @@ -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 @@ -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