Skip to content

0.3.0

Compare
Choose a tag to compare
@linux-china linux-china released this 19 Oct 20:34
· 39 commits to master since this release
  • JDK 17 only: for Java 8 & 11, please use version 0.2.0
  • Java Records support
    record Person(@Positive int id, @Email String email) {
    }

    @Test
    public void testRecord(@Random Person person) {
        System.out.println("person.id = " + person.id());
        System.out.println("person.email = " + person.email());
    }