From 06430cd053a908bba9e169a1a21201b05da6194b Mon Sep 17 00:00:00 2001 From: Yixuan Qiu Date: Thu, 31 Oct 2024 10:38:17 +0800 Subject: [PATCH] prepare for new release --- LICENSE | 6 +++--- pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/LICENSE b/LICENSE index cbb0a96..6ce05b9 100644 --- a/LICENSE +++ b/LICENSE @@ -1,8 +1,8 @@ MIT License -Copyright (c) 2022-2023 SoftMin -Copyright (c) 2022-2023 Ben Dai -Copyright (c) 2022-2023 Yixuan Qiu +Copyright (c) 2022-2024 SoftMin +Copyright (c) 2022-2024 Ben Dai +Copyright (c) 2022-2024 Yixuan Qiu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pyproject.toml b/pyproject.toml index eccf2b0..990bbe4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "rehline" -version = "0.0.4" +version = "0.0.5" description = "Regularized Composite ReLU-ReHU Loss Minimization with Linear Computation and Linear Convergence" authors = [ {name = "Ben Dai", email = "bendai@cuhk.edu.hk"}, diff --git a/setup.py b/setup.py index 617d841..a4894cb 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from pybind11.setup_helpers import Pybind11Extension, build_ext from setuptools import setup -__version__ = "0.0.4" +__version__ = "0.0.5" # The main interface is through Pybind11Extension. # * You can add cxx_std=11/14/17, and then build_ext can be removed.