Skip to content

Commit

Permalink
Release v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Dec 19, 2023
1 parent 3d7cc4e commit 0687606
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,15 @@
# Changelog

## v4.0.0 (2023-12-19)

This version removes deprecated functionality and moved all HTML helpers to a separate library. HTML Helpers are no longer used in new apps from Phoenix v1.7. Older applications who wish to maintain compatibility, add `{:phoenix_html_helpers, "~> 1.0"}` to your `mix.exs` and then replace `use Phoenix.HTML` in your applications by:

```elixir
import Phoenix.HTML
import Phoenix.HTML.Form
use PhoenixHTMLHelpers
```

## v3.3.3 (2023-10-09)

* Enhancements
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Expand Up @@ -3,7 +3,7 @@ defmodule PhoenixHTML.Mixfile do

# Also change package.json version
@source_url "https://github.com/phoenixframework/phoenix_html"
@version "4.0.0-dev"
@version "4.0.0"

def project do
[
Expand Down
10 changes: 2 additions & 8 deletions package.json
@@ -1,13 +1,7 @@
{
"name": "phoenix_html",
"version": "4.0.0-dev",
"version": "4.0.0",
"main": "./priv/static/phoenix_html.js",
"repository": {},
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"package.json",
"priv/static/phoenix_html.js"
]
"files": ["README.md", "CHANGELOG.md", "LICENSE", "package.json", "priv/static/phoenix_html.js"]
}

0 comments on commit 0687606

Please sign in to comment.