Skip to content

Commit

Permalink
chore(release): 1.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# 1.0.0 (2022-12-13)

### Bug Fixes

* cs-fix ([33cc791](33cc791))
* cs-fix ([60c30da](60c30da))
* cs-fix ([ff5977b](ff5977b))
* cs-fix ([4e349ff](4e349ff))
* fixed flag ([019abbc](019abbc))
* fixed type juggling error ([e0ac105](e0ac105))
* phpstan ([18c6d78](18c6d78))
* simplified FileTest.php ([6805601](6805601))
* updated php version of the test action ([743bdc8](743bdc8))

### Features

* added additional mode ([942fed4](942fed4))
* added File mode consts ([bb4fe16](bb4fe16))
* added fread, ftell and fseek ([c2669f5](c2669f5))
* added fwrite function and allowed getContent to return the whole content ([5670633](5670633))
* added get Extension and toString method ([918e225](918e225))
* added getFilenameWithoutExtension and Tests ([f2bde98](f2bde98))
* added move as alias for rename ([1c21ffe](1c21ffe))
* added possibility to create file when used with write mode ([840a1b2](840a1b2))
* added rename function ([adeb6c1](adeb6c1))
* allow rename to use previous filename if newpath ends with / ([1162444](1162444))
* initialized library ([5fd6568](5fd6568))
* made rename more predictable ([99e639a](99e639a))
* overworked rename method ([6532f5a](6532f5a))
  • Loading branch information
semantic-release-bot committed Dec 13, 2022
1 parent 78662a7 commit ac36ba8
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# 1.0.0 (2022-12-13)


### Bug Fixes

* cs-fix ([33cc791](https://github.com/ambimax/php-lib-file/commit/33cc791037a01b07b899ca848f1f6feebc5032e1))
* cs-fix ([60c30da](https://github.com/ambimax/php-lib-file/commit/60c30da392464c638e64810f9dfcacd5671277ed))
* cs-fix ([ff5977b](https://github.com/ambimax/php-lib-file/commit/ff5977b15aea724c06913d27dfe5e03026d061e8))
* cs-fix ([4e349ff](https://github.com/ambimax/php-lib-file/commit/4e349ffab1e0c6f26f86d09d11dd906c1a10a354))
* fixed flag ([019abbc](https://github.com/ambimax/php-lib-file/commit/019abbc78f2b44d568c46b48c8fa380084028084))
* fixed type juggling error ([e0ac105](https://github.com/ambimax/php-lib-file/commit/e0ac105f933238292edec0aa369ef24335edff4f))
* phpstan ([18c6d78](https://github.com/ambimax/php-lib-file/commit/18c6d78658e75bddb52819b7df95eee989acc922))
* simplified FileTest.php ([6805601](https://github.com/ambimax/php-lib-file/commit/680560132e95818f6c2cb914dbac36e34f344d3c))
* updated php version of the test action ([743bdc8](https://github.com/ambimax/php-lib-file/commit/743bdc870d568bfe2e3eb316cb343f51be90c8ff))


### Features

* added additional mode ([942fed4](https://github.com/ambimax/php-lib-file/commit/942fed41024972fd6bd87361743c8f04f3579c2e))
* added File mode consts ([bb4fe16](https://github.com/ambimax/php-lib-file/commit/bb4fe16844ba6de3867a0001d085d15e9056c595))
* added fread, ftell and fseek ([c2669f5](https://github.com/ambimax/php-lib-file/commit/c2669f5ff02cb7f76db99481b0c06630e975193e))
* added fwrite function and allowed getContent to return the whole content ([5670633](https://github.com/ambimax/php-lib-file/commit/5670633c1abedf67c102be4f6f88243dce5ab6d4))
* added get Extension and toString method ([918e225](https://github.com/ambimax/php-lib-file/commit/918e225b088bc415fb9a36543c3de600864907d0))
* added getFilenameWithoutExtension and Tests ([f2bde98](https://github.com/ambimax/php-lib-file/commit/f2bde98073587dac1ddf4613949bc04384feac98))
* added move as alias for rename ([1c21ffe](https://github.com/ambimax/php-lib-file/commit/1c21ffe3e3c2cc2ad1b109cf8bbda519353897e1))
* added possibility to create file when used with write mode ([840a1b2](https://github.com/ambimax/php-lib-file/commit/840a1b24f740d74ae626d39342572b812c5d6257))
* added rename function ([adeb6c1](https://github.com/ambimax/php-lib-file/commit/adeb6c1bd29e3d1517af5249f4d36c3bfd5d4ed1))
* allow rename to use previous filename if newpath ends with / ([1162444](https://github.com/ambimax/php-lib-file/commit/1162444ee5750c015ae5653e709e1a9f82967ad9))
* initialized library ([5fd6568](https://github.com/ambimax/php-lib-file/commit/5fd65685b878b08565f77da16c7195e465b52f09))
* made rename more predictable ([99e639a](https://github.com/ambimax/php-lib-file/commit/99e639a7d27432cc1385607761c40e0ceb700ee9))
* overworked rename method ([6532f5a](https://github.com/ambimax/php-lib-file/commit/6532f5acd426924399de637afd91cbf0c3c84ab1))
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"stan": "vendor/bin/phpstan analyse -c phpstan.neon",
"unit-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text"
},

"require": {
"php": ">=8.0",
"phpseclib/phpseclib": "^3.0"
Expand All @@ -35,5 +34,6 @@
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan-symfony": "^1.1",
"mikey179/vfsstream": "^1.6"
}
},
"version": "1.0.0"
}

0 comments on commit ac36ba8

Please sign in to comment.