From 5e7450ef1ee1f41f69e0b6bd86846de56d3011ad Mon Sep 17 00:00:00 2001 From: Jason Axelson Date: Sun, 17 Sep 2023 07:05:17 -1000 Subject: [PATCH] Update changelog for next release (#325) * Update changelog for next release * bump version and fix broken doc link --- CHANGELOG.md | 18 ++++++++++++++++++ lib/scenic/script.ex | 2 +- mix.exs | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fc14636..63dc15d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## Unreleased + +* Variety of minor updates, bug fixes, and doc updates +* `Scenic.Scene.assign/2` now accepts a map by @amclain in https://github.com/ScenicFramework/scenic/pull/291 +* Allow `Scenic.Scene.assign_new/2` and `Scenic.Driver.assign_new/2` to take a map of values by @adkron in https://github.com/ScenicFramework/scenic/pull/293 +* Update nimble_options by @axelson in https://github.com/ScenicFramework/scenic/pull/300 +* Improve static assets otp_app error message by @axelson in https://github.com/ScenicFramework/scenic/pull/305 +* Upgrade elixir_make and ssl_verify_fun by @ohrite in https://github.com/ScenicFramework/scenic/pull/321 + +### New Contributors +* @amclain made their first contribution in https://github.com/ScenicFramework/scenic/pull/291 +* @adkron made their first contribution in https://github.com/ScenicFramework/scenic/pull/293 +* @seb3s made their first contribution in https://github.com/ScenicFramework/scenic/pull/294 +* @rkenzhebekov made their first contribution in https://github.com/ScenicFramework/scenic/pull/303 +* @ohrite made their first contribution in https://github.com/ScenicFramework/scenic/pull/321 + +**Full Changelog**: https://github.com/ScenicFramework/scenic/compare/v0.11.1...v0.11.2 + ## 0.11.1 * A variety of minor documentation and spec bug fixes. The most important one fixes the docs for Primitives.arc and Primitives.sector, which did not reflect diff --git a/lib/scenic/script.ex b/lib/scenic/script.ex index 41f67266..c058d266 100644 --- a/lib/scenic/script.ex +++ b/lib/scenic/script.ex @@ -118,7 +118,7 @@ defmodule Scenic.Script do Building and using a custom script happens in three parts. First, the script itself is created using the `Scenic.Script` api. - Then the script is published to the ViewPort using `Scenic.Scene/push_script/4` with a + Then the script is published to the ViewPort using `Scenic.Scene.push_script/4` with a unique name. Later, the graph for the checkbox references this script, which is what triggers it to be drawn. diff --git a/mix.exs b/mix.exs index 6af6b450..68165e70 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule Scenic.Mixfile do @app_name :scenic - @version "0.11.1" + @version "0.11.2" @elixir_version "~> 1.11" @github "https://github.com/ScenicFramework/scenic"