Skip to content

Commit b118bea

Browse files
committed
[release] pre-release version bump
1 parent 7cbb5e9 commit b118bea

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

doc/changelog.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Lombok Changelog
22
----------------
33

4-
### v1.18.29 "Edgy Guinea Pig"
4+
### v1.18.30 (September 20th, 2023)
55
* PLATFORM: Initial JDK21 support added. [Issue #3393](https://github.com/projectlombok/lombok/issues/3393).
66
* BUGFIX: Any `@Helper` class directly in a method (and not nested more deeply) wouldn't work. [Issue #3370](https://github.com/projectlombok/lombok/issues/3370).
77
* BUGFIX: If using the module system and lombok is on the runtime classpath (shouldn't be, but happens), you'd get a split package error: `Package org.objectweb.asm in both module lombok and module org.objectweb.asm`. [Issue #3474](https://github.com/projectlombok/lombok/issues/3474)

src/core/lombok/core/Version.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2009-2022 The Project Lombok Authors.
2+
* Copyright (C) 2009-2023 The Project Lombok Authors.
33
*
44
* Permission is hereby granted, free of charge, to any person obtaining a copy
55
* of this software and associated documentation files (the "Software"), to deal
@@ -30,9 +30,9 @@ public class Version {
3030
// ** CAREFUL ** - this class must always compile with 0 dependencies (it must not refer to any other sources or libraries).
3131
// Note: In 'X.Y.Z', if Z is odd, its a snapshot build built from the repository, so many different 0.10.3 versions can exist, for example.
3232
// Official builds always end in an even number. (Since 0.10.2).
33-
private static final String VERSION = "1.18.29";
34-
private static final String RELEASE_NAME = "Edgy Guinea Pig";
35-
// private static final String RELEASE_NAME = "Envious Ferret";
33+
private static final String VERSION = "1.18.30";
34+
// private static final String RELEASE_NAME = "Edgy Guinea Pig";
35+
private static final String RELEASE_NAME = "Envious Ferret";
3636

3737
// Named version history:
3838
// Angry Butterfly

0 commit comments

Comments
 (0)