Skip to content

Commit ab7efac

Browse files
committed
Release 2.0.0
1 parent 42e0f6d commit ab7efac

File tree

3 files changed

+29
-10
lines changed

3 files changed

+29
-10
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
# [2.0.0](https://github.com/getformwork/formwork/releases/tag/2.0.0)
4+
5+
**Breaking Changes**
6+
7+
See [2.0.0-beta.1](#200-beta1) to [2.0.0-rc.1](#200-rc1) changelogs for breaking changes in each pre-release
8+
9+
**Enhancements**
10+
11+
- **Add support for basic filters to `AbstractCollection::filterBy()`**
12+
- **Allow `Image::resize()` to accept only width or height to maintain aspect ratio**
13+
- Add image preview functionality to panel page tree (@srgirard84)
14+
- Add inequality constraints to `Constraint` class
15+
- Add role to new user modal
16+
- Define a generic model variable for dynamic field values if applicable
17+
- Clear cache even if not enabled
18+
- Use pnpm to install panel dependencies
19+
- Set model values in the corresponding field if exists
20+
21+
**Bug fixes**
22+
- Use requested route as cache key to inlude parameters
23+
- Correctly handle bootstrap from cli
24+
325
## [2.0.0-rc.1](https://github.com/getformwork/formwork/releases/tag/2.0.0-rc.1)
426

527
**Breaking Changes**

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,14 @@
77
[![GitHub All Releases](https://img.shields.io/github/downloads/getformwork/formwork/total.svg)](https://github.com/getformwork/formwork/releases)
88
[![Packagist](https://img.shields.io/packagist/dt/getformwork/formwork.svg?color=%23f28d1a&label=Packagist%20downloads)](https://packagist.org/packages/getformwork/formwork)
99

10-
🏗 Formwork is a flat file-based Content Management System (CMS) to build and manage simple sites.
11-
12-
⚠️ **This is the `README` file for the [`2.x`](https://github.com/getformwork/formwork/tree/2.x) branch, currently in development and NOT STABLE.**
13-
14-
👉 **See the [`1.x`](https://github.com/getformwork/formwork/tree/1.x) branch for the latest stable version.**
10+
🏗 Formwork is a simple, fast and flexible flat-file CMS that allows you to create and manage websites without the need for a database.
1511

1612
## Features
17-
- ⚡️ Lightweight
18-
- 🗄 No database required!
19-
- 📦 Easy to [install](#installing)
20-
- ✨ Out-of-the-box Administration Panel
13+
- 🗂️ File-based structure
14+
- 📝 Markdown + YAML for your content
15+
- 🪗 Flexible structured content
16+
- 💡 Intuitive API
17+
- 🛠️ Built-in administration panel
2118

2219
![](site/pages/index/formwork.png)
2320

formwork/src/Cms/App.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ final class App
4949
/**
5050
* Current Formwork version
5151
*/
52-
public const string VERSION = '2.0.0-rc.1';
52+
public const string VERSION = '2.0.0';
5353

5454
/**
5555
* App services container

0 commit comments

Comments
 (0)