Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the version to v1.7.4 #1365

Merged
merged 2 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/packages/framework.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ framework:
http_client:
default_options:
headers:
'User-Agent': 'Mbin/1.7.3 (+https://%kbin_domain%/agent)'
'User-Agent': 'Mbin/1.7.4 (+https://%kbin_domain%/agent)'

#esi: true
#fragments: true
Expand Down
2 changes: 1 addition & 1 deletion docs/02-admin/01-installation/01-bare_metal.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ git clone https://github.com/MbinOrg/mbin.git .

> [!TIP]
> You might now want to switch to the latest stable release tag instead of using the `main` branch.
> Try: `git checkout v1.7.3` (v1.7.3 might **not** be the latest version: [lookup the latest version](https://github.com/MbinOrg/mbin/releases))
> Try: `git checkout v1.7.4` (v1.7.4 might **not** be the latest version: [lookup the latest version](https://github.com/MbinOrg/mbin/releases))

### Create & configure media directory

Expand Down
2 changes: 1 addition & 1 deletion src/Service/ProjectInfoService.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class ProjectInfoService
{
// If updating version, please also update http client UA in [/config/packages/framework.yaml]
private const VERSION = '1.7.3'; // TODO: Retrieve the version from git tags or getenv()?
private const VERSION = '1.7.4'; // TODO: Retrieve the version from git tags or getenv()?
private const NAME = 'mbin';
private const CANONICAL_NAME = 'Mbin';
private const REPOSITORY_URL = 'https://github.com/MbinOrg/mbin';
Expand Down
Loading