Skip to content

Commit 1051c46

Browse files
authored
bump popcorn to 0.2.1 (#539)
1 parent 38a8dd3 commit 1051c46

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

popcorn/elixir/lib/mix/tasks/popcorn.gen.js.ex

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ defmodule Mix.Tasks.Popcorn.Gen.Js do
44
use Mix.Task
55
import Mix.Generator
66

7+
@popcorn_version Mix.Project.config()[:version]
8+
79
@impl true
810
def run(_args) do
911
app_name =
@@ -34,7 +36,7 @@ defmodule Mix.Tasks.Popcorn.Gen.Js do
3436
"build": "node build.mjs"
3537
},
3638
"dependencies": {
37-
"@swmansion/popcorn": "^0.2.0"
39+
"@swmansion/popcorn": "^#{@popcorn_version}"
3840
},
3941
"devDependencies": {
4042
"esbuild": "^0.25.0"

popcorn/elixir/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Popcorn.MixProject do
22
use Mix.Project
33

4-
@version "0.2.0"
4+
@version "0.2.1"
55
@github "https://github.com/software-mansion/popcorn"
66

77
def project do

popcorn/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swmansion/popcorn",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "JS bindings for Popcorn",
55
"type": "module",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)