Skip to content

Commit 4f249ef

Browse files
committed
Merge branch 'release/0.7.1'
2 parents 1b84374 + 700e32c commit 4f249ef

6 files changed

Lines changed: 38 additions & 249 deletions

File tree

.github/workflows/ci.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build-test:
7+
runs-on: ubuntu-latest
8+
container:
9+
image: php:8.4 # This forces the job to run in a Docker container
10+
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v3
14+
15+
- name: Install System Dependencies (Git, Zip, Unzip)
16+
run: |
17+
apt-get update
18+
apt-get install -y unzip git zip
19+
20+
- name: Install and Enable extensions
21+
run: |
22+
docker-php-ext-install sockets calendar
23+
docker-php-ext-enable sockets calendar
24+
25+
- name: Install Composer
26+
run: |
27+
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
28+
composer --version
29+
30+
- name: Install Dependencies
31+
run: composer install --prefer-dist --no-progress
32+
33+
- name: Run PHPUnit
34+
run: vendor/bin/phpunit tests

VERSIONLOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.7.1 2025-02-06
2+
13
## 0.7.0 2025-01-27
24
* Updated tests to 100% coverage.
35
* Changed from StringData to NString

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"ext-curl": "*",
1414
"ext-json": "*",
1515
"ext-calendar": "*",
16-
"neuron-php/formatting": "0.6.*",
16+
"neuron-php/formatting": "0.7.*",
1717
"symfony/yaml": "^6.4"
1818
},
1919
"require-dev": {

src/Data/NString.php

Lines changed: 0 additions & 114 deletions
This file was deleted.

tests/Data/NStringTest.php

Lines changed: 0 additions & 133 deletions
This file was deleted.

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"major":0,"minor":7,"patch":0,"build":0}
1+
{"major":0,"minor":7,"patch":1,"build":0}

0 commit comments

Comments
 (0)