diff --git a/ChangeLog b/ChangeLog index 8461eaf27..a882c80dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,38 @@ CHANGE LOG ========================================================================= +2024-04-09 Jarrett Johnson, Thomas Stewart, Thomas Holder, Anton Butsev + + * 3.0.0 + + * Panels + - Nucleic Acid Builder supported + - Scenes Panel (Basic version) + - Improved APBS electrostatics plugin integrated + + * Distance/Bonding detection + - Halogen-bond detection and display + + * Python API + - `fnab` command (sequence to nucleic acid chain) + - Improved CGO builder API + - get_sasa_relative() `subsele` argument added + - new clip modes/API + - iterate() adds `explicit_valence` and `explicit_degree` + - `cell_centered` setting added + - by grid-cell background gradient `bg_gradient=2` + - look_at() added + - experimental `curve_new` / `move_on_curve` + + * Developer + - C++17 required + - pymol-testing integrated + - pytest introduced + - Github Actions CI + + * And many other fixes and small additions provided by developers + and the community... + 2021-05-10 Jarrett Johnson, Thomas Holder, Thomas Stewart * 2.5.0 diff --git a/layer0/Version.h b/layer0/Version.h index 32694e277..46f69c642 100644 --- a/layer0/Version.h +++ b/layer0/Version.h @@ -1,12 +1,12 @@ #ifndef _PyMOL_VERSION -#define _PyMOL_VERSION "2.6.0a0" +#define _PyMOL_VERSION "3.0.0" #endif /* for session file compatibility */ #ifndef _PyMOL_VERSION_int // X.Y.Z -> XYYYZZZ -#define _PyMOL_VERSION_int 2004000 +#define _PyMOL_VERSION_int 3000000 // Note: There should have never been a "double" version, it's // the least useful variant to specify a version. #define _PyMOL_VERSION_double (_PyMOL_VERSION_int / 1000000.)