mirror of
https://github.com/woutdp/live_svelte
synced 2026-05-24 09:28:21 +00:00
Bump version 0.10.1 -> 0.10.2
This commit is contained in:
parent
cbcf1d3f67
commit
de4d5160d7
5 changed files with 12 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
```
|
||||
|
|
|
|||
2
mix.exs
2
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
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue