Skip to content

Commit 9d9559e

Browse files
Bump version to 4.1.0
1 parent be80805 commit 9d9559e

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# [4.1.0](https://github.com/phalcon/cphalcon/releases/tag/v4.1.0)
2+
## Fixed
3+
- Fixed column annotation bugs on model creation [1425](https://github.com/phalcon/phalcon-devtools/issues/1425)
4+
5+
## Changed
6+
- Migrated phalcon-migrations dependency up to v2 [1464](https://github.com/phalcon/phalcon-devtools/issues/1464)
7+
8+
## Added
9+
- Added docker environment for devtools isolated development
10+
11+
112
# [4.0.7](https://github.com/phalcon/cphalcon/releases/tag/v4.0.7)
213
## Fixed
314
- Fixed not found error on webtools [#1500](https://github.com/phalcon/phalcon-devtools/issues/1500)

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Create the composer.json file as follows:
3737
```json
3838
{
3939
"require-dev": {
40-
"phalcon/devtools": "~4.0"
40+
"phalcon/devtools": "~4.1"
4141
}
4242
}
4343
```
@@ -115,7 +115,7 @@ This command should display something similar to:
115115
```sh
116116
$ phalcon --help
117117

118-
Phalcon DevTools (4.0.4)
118+
Phalcon DevTools (4.1.0)
119119

120120
Help:
121121
Lists the commands available in Phalcon DevTools
@@ -169,7 +169,7 @@ By creating **config.json** or any other configuration file called **config** in
169169
}
170170
```
171171

172-
And then you can use use `phalcon migration run` or `phalcon controller SomeClass` and those commands will be executed with options from file. Arguments provided by developer from command line will overwrite existing one in file.
172+
And then you can use `phalcon migration run` or `phalcon controller SomeClass` and those commands will be executed with options from file. Arguments provided by developer from command line will overwrite existing one in a file.
173173

174174
## License
175175

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"ext-phalcon": "^4.0.0",
2828
"psy/psysh": "~0.9",
2929
"nikic/php-parser": "^4.2.4",
30-
"phalcon/migrations": "2",
30+
"phalcon/migrations": "^2.0",
3131
"vlucas/phpdotenv": "^3.6|^4.0|^5.0"
3232
},
3333
"require-dev": {

src/Version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Version extends PhVersion
2727
// phpcs:disable
2828
protected static function _getVersion(): array
2929
{
30-
return [4, 0, 7, 0, 0];
30+
return [4, 1, 0, 0, 0];
3131
}
3232
// phpcs:enable
3333
}

0 commit comments

Comments
 (0)