Skip to content

Commit

Permalink
Prepare 0.5.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ellmetha committed Nov 24, 2024
1 parent 999a434 commit aadba15
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/docs/the-marten-project/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Here are listed the release notes for each version of the Marten web framework.

## Marten 0.5

* [Marten 0.5.4 release notes](./release-notes/0.5.4.md) _(under development)_
* [Marten 0.5.4 release notes](./release-notes/0.5.4.md)
* [Marten 0.5.3 release notes](./release-notes/0.5.3.md)
* [Marten 0.5.2 release notes](./release-notes/0.5.2.md)
* [Marten 0.5.1 release notes](./release-notes/0.5.1.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/the-marten-project/release-notes/0.5.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pagination_prev: null
pagination_next: null
---

_Under development._
_November 24, 2024._

## Bug fixes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Here are listed the release notes for each version of the Marten web framework.

## Marten 0.5

* [Marten 0.5.4 release notes](./release-notes/0.5.4.md)
* [Marten 0.5.3 release notes](./release-notes/0.5.3.md)
* [Marten 0.5.2 release notes](./release-notes/0.5.2.md)
* [Marten 0.5.1 release notes](./release-notes/0.5.1.md)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: Marten 0.5.4 release notes
pagination_prev: null
pagination_next: null
---

_November 24, 2024._

## Bug fixes

* Fix possible undefined constant compilation error when using [`file`](../../schemas/reference/fields.md#file) schema fields.
* Fix CSRF token request data parameter not being used when the method of POST requests is overridden with the [Method Override middleware](../../handlers-and-http/reference/middlewares.md#method-override-middleware).
3 changes: 2 additions & 1 deletion docs/versioned_sidebars/version-0.5-sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,8 @@
"the-marten-project/release-notes/0.5",
"the-marten-project/release-notes/0.5.1",
"the-marten-project/release-notes/0.5.2",
"the-marten-project/release-notes/0.5.3"
"the-marten-project/release-notes/0.5.3",
"the-marten-project/release-notes/0.5.4"
]
}
]
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: marten
version: 0.5.3
version: 0.5.4

authors:
- Morgan Aubert <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/marten.cr
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ require "./marten/server/**"
require "./marten/template/**"

module Marten
VERSION = "0.5.3"
VERSION = "0.5.4"

Log = ::Log.for("marten")

Expand Down

0 comments on commit aadba15

Please sign in to comment.