File tree Expand file tree Collapse file tree 16 files changed +134
-20
lines changed Expand file tree Collapse file tree 16 files changed +134
-20
lines changed Original file line number Diff line number Diff line change @@ -32,9 +32,9 @@ repository = "https://github.com/phper-framework/phper"
32
32
rust-version = " 1.85"
33
33
34
34
[workspace .dependencies ]
35
- phper = { version = " 0.15 .0" , path = " ./phper" }
36
- phper-alloc = { version = " 0.15.0 " , path = " ./phper-alloc" }
37
- phper-build = { version = " 0.15.0 " , path = " ./phper-build" }
38
- phper-macros = { version = " 0.15.0 " , path = " ./phper-macros" }
39
- phper-sys = { version = " 0.15.0 " , path = " ./phper-sys" }
40
- phper-test = { version = " 0.15.0 " , path = " ./phper-test" }
35
+ phper = { version = " 0.16 .0" , path = " ./phper" }
36
+ phper-alloc = { version = " 0.15.1 " , path = " ./phper-alloc" }
37
+ phper-build = { version = " 0.15.1 " , path = " ./phper-build" }
38
+ phper-macros = { version = " 0.15.1 " , path = " ./phper-macros" }
39
+ phper-sys = { version = " 0.15.1 " , path = " ./phper-sys" }
40
+ phper-test = { version = " 0.15.1 " , path = " ./phper-test" }
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
+
8
+ ## [ Unreleased]
9
+
10
+ ## [ 0.15.1] ( https://github.com/phper-framework/phper/compare/phper-alloc-v0.15.0...phper-alloc-v0.15.1 ) - 2025-04-04
11
+
12
+ ### Other
13
+
14
+ - Remove workspace.package.version ([ #199 ] ( https://github.com/phper-framework/phper/pull/199 ) )
Original file line number Diff line number Diff line change 12
12
name = " phper-alloc"
13
13
description = " Alloc related items for phper crate."
14
14
keywords = [" php" , " alloc" ]
15
- version = " 0.15.0 "
15
+ version = " 0.15.1 "
16
16
authors = { workspace = true }
17
17
edition = { workspace = true }
18
18
rust-version = { workspace = true }
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
+
8
+ ## [ Unreleased]
9
+
10
+ ## [ 0.15.1] ( https://github.com/phper-framework/phper/compare/phper-build-v0.15.0...phper-build-v0.15.1 ) - 2025-04-04
11
+
12
+ ### Other
13
+
14
+ - Remove workspace.package.version ([ #199 ] ( https://github.com/phper-framework/phper/pull/199 ) )
Original file line number Diff line number Diff line change 12
12
name = " phper-build"
13
13
description = " Generates stubs for project using phper."
14
14
keywords = [" php" , " binding" ]
15
- version = " 0.15.0 "
15
+ version = " 0.15.1 "
16
16
authors = { workspace = true }
17
17
edition = { workspace = true }
18
18
rust-version = { workspace = true }
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
+
8
+ ## [ Unreleased]
9
+
10
+ ## [ 0.15.1] ( https://github.com/phper-framework/phper/compare/phper-doc-v0.15.0...phper-doc-v0.15.1 ) - 2025-04-04
11
+
12
+ ### Other
13
+
14
+ - Remove workspace.package.version ([ #199 ] ( https://github.com/phper-framework/phper/pull/199 ) )
15
+ - allow static interface methods ([ #198 ] ( https://github.com/phper-framework/phper/pull/198 ) )
16
+ - test and document co-dependent classes ([ #194 ] ( https://github.com/phper-framework/phper/pull/194 ) )
17
+ - improve Interface::extends and ClassEntry::extends ([ #190 ] ( https://github.com/phper-framework/phper/pull/190 ) )
18
+ - refactor ClassEntity.implements ([ #189 ] ( https://github.com/phper-framework/phper/pull/189 ) )
19
+ - [ breaking] add argument and return value type-hints ([ #187 ] ( https://github.com/phper-framework/phper/pull/187 ) )
Original file line number Diff line number Diff line change 12
12
name = " phper-doc"
13
13
description = " The documentation of phper."
14
14
keywords = [" php" , " documentation" ]
15
- version = " 0.15.0 "
15
+ version = " 0.15.1 "
16
16
authors = { workspace = true }
17
17
edition = { workspace = true }
18
18
rust-version = { workspace = true }
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
+
8
+ ## [ Unreleased]
9
+
10
+ ## [ 0.15.1] ( https://github.com/phper-framework/phper/compare/phper-macros-v0.15.0...phper-macros-v0.15.1 ) - 2025-04-04
11
+
12
+ ### Other
13
+
14
+ - Remove workspace.package.version ([ #199 ] ( https://github.com/phper-framework/phper/pull/199 ) )
Original file line number Diff line number Diff line change 12
12
name = " phper-macros"
13
13
description = " The proc-macros for phper crate."
14
14
keywords = [" php" , " proc-macro" ]
15
- version = " 0.15.0 "
15
+ version = " 0.15.1 "
16
16
authors = { workspace = true }
17
17
edition = { workspace = true }
18
18
rust-version = { workspace = true }
You can’t perform that action at this time.
0 commit comments