Skip to content

Commit

Permalink
Prepare 0.5.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ellmetha committed Oct 6, 2024
1 parent efeaa39 commit 5c6dc7a
Show file tree
Hide file tree
Showing 7 changed files with 20 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.3 release notes](./release-notes/0.5.3.md) _(under development)_
* [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)
* [Marten 0.5 release notes](./release-notes/0.5.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/the-marten-project/release-notes/0.5.3.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._
_October 6, 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.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)
* [Marten 0.5 release notes](./release-notes/0.5.md)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: Marten 0.5.3 release notes
pagination_prev: null
pagination_next: null
---

_October 6, 2024._

## Bug fixes

* Fix query prefetcher not systematically using unscoped queries when prefetching relation records.
* Fix possible case sensitivity issue when specifying HTTP method names supported by specific handlers.
* Fix inconsistent callback name in the password update handler generated for the [authentication application](../../authentication/introduction.md).
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 @@ -361,7 +361,8 @@
"the-marten-project/release-notes/0.4.5",
"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.2",
"the-marten-project/release-notes/0.5.3"
]
}
]
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.2
version: 0.5.3

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 @@ -40,7 +40,7 @@ require "./marten/server/**"
require "./marten/template/**"

module Marten
VERSION = "0.5.2"
VERSION = "0.5.3"

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

Expand Down

0 comments on commit 5c6dc7a

Please sign in to comment.