Skip to content

Commit

Permalink
v1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mplatts committed Apr 22, 2023
1 parent 4fc6ea7 commit 5f0a557
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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>`

Expand Down
1 change: 0 additions & 1 deletion assets/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
[
Expand Down
3 changes: 2 additions & 1 deletion priv/release.exs
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ defmodule Releaser.Changelog do
"""
#{header_prefix} #{version_string} - #{date_time_string}
#{text}
"""
end

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 5f0a557

Please sign in to comment.