Skip to content

Commit

Permalink
Prepare 0.4.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ellmetha committed Mar 11, 2024
1 parent b21864f commit c5626f3
Show file tree
Hide file tree
Showing 7 changed files with 22 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.4

* [Marten 0.4.3 release notes](./release-notes/0.4.3.md) _(under development)_
* [Marten 0.4.3 release notes](./release-notes/0.4.3.md)
* [Marten 0.4.2 release notes](./release-notes/0.4.2.md)
* [Marten 0.4.1 release notes](./release-notes/0.4.1.md)
* [Marten 0.4 release notes](./release-notes/0.4.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/the-marten-project/release-notes/0.4.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._
_March 10, 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.4

* [Marten 0.4.3 release notes](./release-notes/0.4.3.md)
* [Marten 0.4.2 release notes](./release-notes/0.4.2.md)
* [Marten 0.4.1 release notes](./release-notes/0.4.1.md)
* [Marten 0.4 release notes](./release-notes/0.4.md)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: Marten 0.4.3 release notes
pagination_prev: null
pagination_next: null
---

_March 10, 2024._

## Bug fixes

* Ensure that request query parameters can be accessed from templates.
* Fix hidden folders being ignored by the [`collectassets`](../../development/reference/management-commands.md#collectassets) management command.
* Fix some ameba warnings in generated projects and applications.
* Fix inconsistency of `#using` method definitions between model classes and query sets.
* Fix missing DB-specific requirements in generated projects.
3 changes: 2 additions & 1 deletion docs/versioned_sidebars/version-0.4-sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,8 @@
"the-marten-project/release-notes/0.3.4",
"the-marten-project/release-notes/0.4",
"the-marten-project/release-notes/0.4.1",
"the-marten-project/release-notes/0.4.2"
"the-marten-project/release-notes/0.4.2",
"the-marten-project/release-notes/0.4.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.4.2
version: 0.4.3

authors:
- Morgan Aubert <me@morganaubert.name>
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.4.2"
VERSION = "0.4.3"

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

Expand Down

0 comments on commit c5626f3

Please sign in to comment.