chore: release version v0.1.0

This commit is contained in:
Zach Daniel 2021-03-22 02:42:18 -04:00
parent 654c241f41
commit d99db5e821
2 changed files with 61 additions and 0 deletions

45
CHANGELOG.md Normal file
View file

@ -0,0 +1,45 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](Https://conventionalcommits.org) for commit guidelines.
<!-- changelog -->
## [v0.1.0](https://github.com/ash-project/ash_admin/compare/v0.1.0...v0.1.0) (2021-03-22)
### Features:
* draw the rest of the owl
* support fully managed relationships
* set actor from show page
* support destroy actions
* lots of new features, including related id updates
### Bug Fixes:
* various fixes
* various fixes/improvements
* various bug fixes
* update dep versions
* fix action changing
### Improvements:
* general fixes, configurable action lists
* add pagination support
* support read actions with arguments
* add "log in" button

View file

@ -45,3 +45,19 @@ config :ash_admin, DemoWeb.Endpoint,
config :logger, level: :debug
config :phoenix, :serve_endpoints, true
use Mix.Config
if Mix.env() == :dev do
config :git_ops,
mix_project: AshAdmin.MixProject,
changelog_file: "CHANGELOG.md",
repository_url: "https://github.com/ash-project/ash_admin",
# Instructs the tool to manage your mix version in your `mix.exs` file
# See below for more information
manage_mix_version?: true,
# Instructs the tool to manage the version in your README.md
# Pass in `true` to use `"README.md"` or a string to customize
manage_readme_version: "README.md",
version_tag_prefix: "v"
end