From de4d5160d7f3cb321da28300bd69c4f50df1a7ab Mon Sep 17 00:00:00 2001 From: Wout De Puysseleir Date: Mon, 31 Jul 2023 10:33:16 -0700 Subject: [PATCH] Bump version 0.10.1 -> 0.10.2 --- CHANGELOG.md | 7 +++++++ README.md | 2 +- mix.exs | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0fcfa1..a2c2d19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.2] - 2023-07-31 + +### Fixed + +- Cleanup and simplify `render` function - [PR](https://github.com/woutdp/live_svelte/pull/61) +- Mark `esbuild` as dev only dependency - [PR](https://github.com/woutdp/live_svelte/pull/62) + ## [0.10.1] - 2023-07-30 ### Fixed diff --git a/README.md b/README.md index acd817a..708dfce 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ If you don't want SSR, you can disable it by not setting `NodeJS.Supervisor` in ```elixir defp deps do [ - {:live_svelte, "~> 0.10.1"} + {:live_svelte, "~> 0.10.2"} ] end ``` diff --git a/mix.exs b/mix.exs index fee8cf8..6336a0c 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule LiveSvelte.MixProject do use Mix.Project - @version "0.10.1" + @version "0.10.2" @repo_url "https://github.com/woutdp/live_svelte" def project do diff --git a/package-lock.json b/package-lock.json index 3b9a4c0..56d07c8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "live_svelte", - "version": "0.10.1", + "version": "0.10.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "live_svelte", - "version": "0.10.1", + "version": "0.10.2", "license": "MIT", "devDependencies": { "prettier": "2.8.7", diff --git a/package.json b/package.json index d1b6c08..567d7e1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "live_svelte", - "version": "0.10.1", + "version": "0.10.2", "description": "", "license": "MIT", "module": "./priv/static/live_svelte.esm.js",