diff --git a/CHANGELOG.md b/CHANGELOG.md index ff9848b..96048fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.7.8 + +* Relax protobuf upper bound to <6.0.0 for lqp compatibility + ## v0.7.7 * Trigger build workflow / fix issue with pypi diff --git a/railib/__init__.py b/railib/__init__.py index d1209ea..f9ae970 100644 --- a/railib/__init__.py +++ b/railib/__init__.py @@ -12,5 +12,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version_info__ = (0, 7, 7) +__version_info__ = (0, 7, 8) __version__ = ".".join(map(str, __version_info__))