@@ -85,6 +85,23 @@ Whenever there is a new release, then from the command line in your project root
85
85
Read the :doc: `upgrade instructions <upgrading >` and :doc: `change log <../changelogs/index >`,
86
86
and check Breaking Changes and Enhancements.
87
87
88
+ Upgrading to a Specified Version
89
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
90
+
91
+ For example, you may want to upgrade to v4.4.8 after v4.5.0 has been released.
92
+
93
+ In that case, open **composer.json ** in your project root folder, and specify
94
+ the framework version:
95
+
96
+ .. code-block :: text
97
+
98
+ "require": {
99
+ ...
100
+ "codeigniter4/framework": "4.4.8"
101
+ },
102
+
103
+ Then, run the ``composer update `` command.
104
+
88
105
Pros
89
106
----
90
107
@@ -219,6 +236,23 @@ Whenever there is a new release, then from the command line in your project root
219
236
Read the :doc: `upgrade instructions <upgrading >` and :doc: `change log <../changelogs/index >`,
220
237
and check Breaking Changes and Enhancements.
221
238
239
+ Upgrading to a Specified Version
240
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
241
+
242
+ For example, you may want to upgrade to v4.4.8 after v4.5.0 has been released.
243
+
244
+ In that case, open **composer.json ** in your project root folder, and specify
245
+ the framework version:
246
+
247
+ .. code-block :: text
248
+
249
+ "require": {
250
+ ...
251
+ "codeigniter4/framework": "4.4.8"
252
+ },
253
+
254
+ Then, run the ``composer update `` command.
255
+
222
256
Pros
223
257
----
224
258
0 commit comments