Skip to content

Commit

Permalink
Prepare for release 1.x-1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yorkshire-pudding committed Sep 7, 2024
1 parent d5733e0 commit 9d8e9fe
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .lando.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ services:
database:
healthcheck: mysql --defaults-extra-file=/app/.lando/mysql.cnf --silent --execute "SHOW DATABASES;"
multisite:
type: php:8.2
type: php:8.3
webroot: multisite
events:
pre-rebuild:
Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ and this project follows the
which is based on the major version of Backdrop CMS with a semantic version
system for each contributed module, theme and layout.

## [Unreleased] - 2024-09-06
## [Unreleased] - 2024-09-07
## [1.x-1.1.0] - 2024-09-07

### Added
- A new function to check whether or not an executable exists in the system.
Expand Down Expand Up @@ -115,7 +116,8 @@ filenames) are included in table output.
### Changed
- Changed from `b` to `bee`

[Unreleased]: https://github.com/backdrop-contrib/bee/compare/1.x-1.0.2...HEAD
[Unreleased]: https://github.com/backdrop-contrib/bee/compare/1.x-1.1.0...HEAD
[1.x-1.1.0]: https://github.com/backdrop-contrib/bee/compare/1.x-1.0.2...1.x-1.1.0
[1.x-1.0.2]: https://github.com/backdrop-contrib/bee/compare/1.x-1.0.1...1.x-1.0.2
[1.x-1.0.1]: https://github.com/backdrop-contrib/bee/compare/1.x-1.0.0-beta...1.x-1.0.1
[1.x-1.0.0-beta]: https://github.com/backdrop-contrib/bee/compare/v0.0.0...1.x-1.0.0-beta
5 changes: 5 additions & 0 deletions docs/Usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,11 @@ options in a given file.
- `bee help status` - Display help for the 'status' command.
- `bee help` - Display help for 'bee' itself.

#### `changelog`
*Description:* Display the current CHANGELOG of Bee.
*Examples:*
- `bee changelog` - Output the current CHANGELOG.

### Core
#### `download-core`
*Description:* Download Backdrop core.
Expand Down
4 changes: 2 additions & 2 deletions includes/globals.inc
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ define('BEE_BOOTSTRAP_FULL', 8);
// Current version of Bee.
// This will normally be based on the next minor release (e.g '1.x-1.1.x-dev')
// but will be changed briefly when a release is generated.
define('BEE_VERSION', '1.x-1.1.x-dev');
define('BEE_VERSION', '1.x-1.1.0');

// Latest release.
// This will be updated at each release.
define('BEE_LATEST_RELEASE', '1.x-1.0.2');
define('BEE_LATEST_RELEASE', '1.x-1.1.0');

/**
* Define constants for symbols to be used within Bee.
Expand Down

0 comments on commit 9d8e9fe

Please sign in to comment.