Skip to content

Commit

Permalink
chore(master): release 4.1.0 (#55)
Browse files Browse the repository at this point in the history
* chore(master): release 4.1.0

* build: Update versions in mod files

* Update composer.json

* ocular

* rev

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: John Rayes <live627@gmail.com>
  • Loading branch information
github-actions[bot] and live627 authored Feb 18, 2025
1 parent cdef697 commit 1edf459
Show file tree
Hide file tree
Showing 35 changed files with 1,031 additions and 150 deletions.
110 changes: 6 additions & 104 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
filter:
excluded_paths:
- tests/
checks:
php:
variable_existence: true
Expand Down Expand Up @@ -67,110 +70,9 @@ checks:
avoid_superglobals: false
security_vulnerabilities: false
no_exit: false
coding_style:
php:
indentation:
general:
use_tabs: true
size: 4
switch:
indent_case: true
spaces:
general:
linefeed_character: newline
before_parentheses:
function_declaration: false
closure_definition: false
function_call: false
if: true
for: true
while: true
switch: true
catch: true
array_initializer: false
around_operators:
assignment: true
logical: true
equality: true
relational: true
bitwise: true
additive: true
multiplicative: true
shift: true
unary_additive: false
concatenation: true
negation: false
before_left_brace:
class: true
function: true
if: true
else: true
for: true
while: true
do: true
switch: true
try: true
catch: true
finally: true
before_keywords:
else: true
while: true
catch: true
finally: true
within:
brackets: false
array_initializer: false
grouping: false
function_call: false
function_declaration: false
if: false
for: false
while: false
switch: false
catch: false
type_cast: false
ternary_operator:
before_condition: true
after_condition: true
before_alternative: true
after_alternative: true
in_short_version: false
other:
before_comma: false
after_comma: true
before_semicolon: false
after_semicolon: true
after_type_cast: true
braces:
classes_functions:
class: new-line
function: new-line
closure: new-line
if:
opening: new-line
always: false
else_on_new_line: true
for:
opening: new-line
always: false
while:
opening: new-line
always: false
do_while:
opening: new-line
always: false
while_on_new_line: true
switch:
opening: new-line
try:
opening: new-line
catch_on_new_line: true
finally_on_new_line: true
upper_lower_casing:
keywords:
general: lower
constants:
true_false_null: lower
tools:
external_code_coverage:
timeout: 300
build:
image: default-bionic
nodes:
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
This project adheres to [Semantic Versioning](http://semver.org/) as of v1.8.0.

## [4.1.0](https://github.com/live627/smf-custom-forms/compare/v4.0.7...v4.1.0) (2025-02-05)


### Features

* Add both Spanish and German translations ([e6518aa](https://github.com/live627/smf-custom-forms/commit/e6518aa68e6c5386e1b6a5f95f7c572c7936cc9e))


### Bug Fixes

* Ensure that custom template functions actually load ([93fe3e2](https://github.com/live627/smf-custom-forms/commit/93fe3e2ea0f3fb2ebc8f2f27f61ecb64353947a0))

## [4.0.7](https://github.com/live627/smf-custom-forms/compare/v4.0.6...v4.0.7) (2024-11-24)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Package name | SMF version | Minimmum PHP version
--- | --- | ---
[Custom Form Mod 4.0.6](https://github.com/live627/smf-custom-forms/releases/download/v4.0.6/custom-forms_4-0-6.tgz) | SMF 2.1.x | PHP 8
[Custom Form Mod 4.1.0](https://github.com/live627/smf-custom-forms/releases/download/v4.1.0/custom-forms_4-1-0.tgz) | SMF 2.1.x | PHP 8
[Custom Form Mod 2.2.4](https://github.com/live627/smf-custom-forms/releases/download/v2.2.4/custom-forms_2-2-4.tgz) | SMF 2.0.x, SMF 2.1.x | PHP 7.4
Custom Form Mod 1.7 | SMF 1.1.x, 2.0.x | PHP 4.3 – PHP 7.4

Expand Down
16 changes: 12 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,20 @@
}
},
"require": {
"php": ">=8.1"
"php": ">=8.0"
},
"repositories": [
{
"url": "https://github.com/SimpleMachines/SMF.git",
"type": "vcs"
}
],
"require-dev": {
"simplemachines/smf": "^2.1",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.0",
"squizlabs/php_codesniffer": "^3.6"
"squizlabs/php_codesniffer": "^3.6",
"scrutinizer/ocular": "^1.9"
},
"scripts": {
"phpunit": "phpunit --testdox",
Expand All @@ -19,5 +27,5 @@
"phpcs": "phpcs --standard=./ ./src",
"phpcbf": "phpcbf --standard=./ ./src"
},
"version": "4.0.7"
}
"version": "4.1.0"
}
Loading

0 comments on commit 1edf459

Please sign in to comment.