diff --git a/CHANGELOG.md b/CHANGELOG.md index e99a5f55..5ad87e15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,5 @@ # Changelog - -### Unreleased - +### 1.0.6 - 2023-04-22 00:52:23 - New: Add `separator_class` option to `<.breadcrumb>` - New: Add `tooltip` option to `<.icon_button>` diff --git a/assets/default.css b/assets/default.css index 0437b16d..94fdeb34 100644 --- a/assets/default.css +++ b/assets/default.css @@ -198,7 +198,6 @@ @apply w-3 h-3 -mt-2 rotate-45 bg-gray-900 dark:bg-gray-700; } - /* Icon Buttons - colors */ .pc-icon-button--primary { diff --git a/mix.exs b/mix.exs index a8ecf7a1..c163b91d 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule PetalComponents.MixProject do use Mix.Project @source_url "https://github.com/petalframework/petal_components" - @version "1.0.5" + @version "1.0.6" def project do [ diff --git a/priv/release.exs b/priv/release.exs index 2d6da2b7..92d4c8ab 100644 --- a/priv/release.exs +++ b/priv/release.exs @@ -127,6 +127,7 @@ defmodule Releaser.Changelog do """ #{header_prefix} #{version_string} - #{date_time_string} #{text} + """ end @@ -155,7 +156,7 @@ defmodule Releaser.Git do def add_commit_and_tag(version) do version_string = VersionUtils.version_to_string(version) Mix.Shell.IO.cmd("git add .", []) - Mix.Shell.IO.cmd(~s'git commit -m "Bumped version number"') + Mix.Shell.IO.cmd(~s'git commit -m "v#{version_string}"') Mix.Shell.IO.cmd(~s'git tag -a v#{version_string} -m "Version #{version_string}"') end end