You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -54,7 +69,7 @@ repository and dependency in your POM file:
54
69
<dependency>
55
70
<groupId>unquietcode.tools.flapi</groupId>
56
71
<artifactId>flapi</artifactId>
57
-
<version>0.5.2</version>
72
+
<version>0.6</version>
58
73
<scope>test</scope>
59
74
</dependency>
60
75
```
@@ -86,10 +101,7 @@ The original blog post describing Flapi.
86
101
Google Group for asking questions and connecting with other developers using Flapi in their projects.
87
102
88
103
### What's the project's status?
89
-
Version 0.5 has been released, and includes a few new features and bug fixes.
90
-
See the [Release Notes](https://github.com/UnquietCode/Flapi/wiki/Version-0.5) for the full details.
91
-
92
-
The latest patch version is `0.5.2`.
104
+
Version 0.6 has been released, and includes support for creating descriptors using annotations. See the [Release Notes](https://github.com/UnquietCode/Flapi/wiki/Version-0.6) for the full details.
93
105
94
106
### Problems?
95
107
Use the [issue tracker](https://github.com/UnquietCode/Flapi/issues) to report problems encountered or new
Copy file name to clipboardExpand all lines: VERSION.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,9 @@ of descriptors.
5
5
### Annotations
6
6
You can now create descriptors from annotated helper classes and interfaces. See the documentation section on [annotations]() for more details.
7
7
8
+
### Bean Builders
9
+
Similar to annotations, you can provide a class with `setXYZ(..)` and `withXYZ(..)` methods, and these will be turned into a simple builder where each method can only be called at most one time, and where a bean will be returned at the end of the chain.
10
+
8
11
## Resolved Issues
9
12
Issues are now handled through GitHub, and historical issues have been migrated from JIRA.
0 commit comments