Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralexzorin <alex@zorin.id.au>2022-10-04 21:09:37 +0300
committerGitHub <noreply@github.com>2022-10-04 21:09:37 +0300
commite84271b36b530099a9c1d8de20d13148b99cb8a8 (patch)
treef2e1c4aa395ec1dd22342fdc2b4fe3367810a362
parente3448fa0d5a553d52ac3886f5e5f5fe2bead10ae (diff)
parent3eac48ba5a573ac4f3d50835310be84ed38513f7 (diff)
Merge pull request #9425 from certbot/candidate-1.31.0
Release 1.31.0
-rw-r--r--acme/docs/jws-help.txt2
-rw-r--r--acme/setup.py2
-rw-r--r--certbot-apache/setup.py2
-rw-r--r--certbot-compatibility-test/setup.py2
-rw-r--r--certbot-dns-cloudflare/setup.py2
-rw-r--r--certbot-dns-cloudxns/setup.py2
-rw-r--r--certbot-dns-digitalocean/setup.py2
-rw-r--r--certbot-dns-dnsimple/setup.py2
-rw-r--r--certbot-dns-dnsmadeeasy/setup.py2
-rw-r--r--certbot-dns-gehirn/setup.py2
-rw-r--r--certbot-dns-google/setup.py2
-rw-r--r--certbot-dns-linode/setup.py2
-rw-r--r--certbot-dns-luadns/setup.py2
-rw-r--r--certbot-dns-nsone/setup.py2
-rw-r--r--certbot-dns-ovh/setup.py2
-rw-r--r--certbot-dns-rfc2136/setup.py2
-rw-r--r--certbot-dns-route53/setup.py2
-rw-r--r--certbot-dns-sakuracloud/setup.py2
-rw-r--r--certbot-nginx/setup.py2
-rw-r--r--certbot/CHANGELOG.md18
-rw-r--r--certbot/certbot/__init__.py2
-rw-r--r--certbot/docs/cli-help.txt4
22 files changed, 39 insertions, 23 deletions
diff --git a/acme/docs/jws-help.txt b/acme/docs/jws-help.txt
index 34cf5ce23..bfd16dff4 100644
--- a/acme/docs/jws-help.txt
+++ b/acme/docs/jws-help.txt
@@ -3,6 +3,6 @@ usage: jws [-h] [--compact] {sign,verify} ...
positional arguments:
{sign,verify}
-optional arguments:
+options:
-h, --help show this help message and exit
--compact
diff --git a/acme/setup.py b/acme/setup.py
index 5d88564dd..7533ffdac 100644
--- a/acme/setup.py
+++ b/acme/setup.py
@@ -3,7 +3,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'cryptography>=2.5.0',
diff --git a/certbot-apache/setup.py b/certbot-apache/setup.py
index 425f85db7..9e8ac2d58 100644
--- a/certbot-apache/setup.py
+++ b/certbot-apache/setup.py
@@ -1,7 +1,7 @@
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
# We specify the minimum acme and certbot version as the current plugin
diff --git a/certbot-compatibility-test/setup.py b/certbot-compatibility-test/setup.py
index f5c1291ea..84dc88f9b 100644
--- a/certbot-compatibility-test/setup.py
+++ b/certbot-compatibility-test/setup.py
@@ -1,7 +1,7 @@
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'certbot',
diff --git a/certbot-dns-cloudflare/setup.py b/certbot-dns-cloudflare/setup.py
index 3efbb1494..8d59ea38d 100644
--- a/certbot-dns-cloudflare/setup.py
+++ b/certbot-dns-cloudflare/setup.py
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'cloudflare>=1.5.1',
diff --git a/certbot-dns-cloudxns/setup.py b/certbot-dns-cloudxns/setup.py
index 3f298d9be..89c6b21f5 100644
--- a/certbot-dns-cloudxns/setup.py
+++ b/certbot-dns-cloudxns/setup.py
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'dns-lexicon>=3.2.1',
diff --git a/certbot-dns-digitalocean/setup.py b/certbot-dns-digitalocean/setup.py
index 9b4196133..5f7c46b12 100644
--- a/certbot-dns-digitalocean/setup.py
+++ b/certbot-dns-digitalocean/setup.py
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'python-digitalocean>=1.11', # 1.15.0 or newer is recommended for TTL support
diff --git a/certbot-dns-dnsimple/setup.py b/certbot-dns-dnsimple/setup.py
index dfc3e529f..b8a9f23b4 100644
--- a/certbot-dns-dnsimple/setup.py
+++ b/certbot-dns-dnsimple/setup.py
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
# This version of lexicon is required to address the problem described in
diff --git a/certbot-dns-dnsmadeeasy/setup.py b/certbot-dns-dnsmadeeasy/setup.py
index 276a94ca9..92ac1beac 100644
--- a/certbot-dns-dnsmadeeasy/setup.py
+++ b/certbot-dns-dnsmadeeasy/setup.py
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'dns-lexicon>=3.2.1',
diff --git a/certbot-dns-gehirn/setup.py b/certbot-dns-gehirn/setup.py
index c9247f341..800b98c79 100644
--- a/certbot-dns-gehirn/setup.py
+++ b/certbot-dns-gehirn/setup.py
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'dns-lexicon>=3.2.1',
diff --git a/certbot-dns-google/setup.py b/certbot-dns-google/setup.py
index d5a6acc94..88fe1e382 100644
--- a/certbot-dns-google/setup.py
+++ b/certbot-dns-google/setup.py
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'google-api-python-client>=1.5.5',
diff --git a/certbot-dns-linode/setup.py b/certbot-dns-linode/setup.py
index 03f3f3bc2..f33593127 100644
--- a/certbot-dns-linode/setup.py
+++ b/certbot-dns-linode/setup.py
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'dns-lexicon>=3.2.1',
diff --git a/certbot-dns-luadns/setup.py b/certbot-dns-luadns/setup.py
index 224181566..e97f64dba 100644
--- a/certbot-dns-luadns/setup.py
+++ b/certbot-dns-luadns/setup.py
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'dns-lexicon>=3.2.1',
diff --git a/certbot-dns-nsone/setup.py b/certbot-dns-nsone/setup.py
index b89b64e01..9a400bb90 100644
--- a/certbot-dns-nsone/setup.py
+++ b/certbot-dns-nsone/setup.py
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'dns-lexicon>=3.2.1',
diff --git a/certbot-dns-ovh/setup.py b/certbot-dns-ovh/setup.py
index 70c3d6fbe..608789859 100644
--- a/certbot-dns-ovh/setup.py
+++ b/certbot-dns-ovh/setup.py
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'dns-lexicon>=3.2.1',
diff --git a/certbot-dns-rfc2136/setup.py b/certbot-dns-rfc2136/setup.py
index 01a026d61..670654c42 100644
--- a/certbot-dns-rfc2136/setup.py
+++ b/certbot-dns-rfc2136/setup.py
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'dnspython>=1.15.0',
diff --git a/certbot-dns-route53/setup.py b/certbot-dns-route53/setup.py
index ed4cc0a11..f15152e31 100644
--- a/certbot-dns-route53/setup.py
+++ b/certbot-dns-route53/setup.py
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'boto3>=1.15.15',
diff --git a/certbot-dns-sakuracloud/setup.py b/certbot-dns-sakuracloud/setup.py
index 10a606b4c..b52ba1bd2 100644
--- a/certbot-dns-sakuracloud/setup.py
+++ b/certbot-dns-sakuracloud/setup.py
@@ -4,7 +4,7 @@ import sys
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
'dns-lexicon>=3.2.1',
diff --git a/certbot-nginx/setup.py b/certbot-nginx/setup.py
index 4a4d57509..eaa317fa8 100644
--- a/certbot-nginx/setup.py
+++ b/certbot-nginx/setup.py
@@ -1,7 +1,7 @@
from setuptools import find_packages
from setuptools import setup
-version = '1.31.0.dev0'
+version = '1.32.0.dev0'
install_requires = [
# We specify the minimum acme and certbot version as the current plugin
diff --git a/certbot/CHANGELOG.md b/certbot/CHANGELOG.md
index d02d2cdba..231f5c453 100644
--- a/certbot/CHANGELOG.md
+++ b/certbot/CHANGELOG.md
@@ -2,7 +2,23 @@
Certbot adheres to [Semantic Versioning](https://semver.org/).
-## 1.31.0 - master
+## 1.32.0 - master
+
+### Added
+
+*
+
+### Changed
+
+*
+
+### Fixed
+
+*
+
+More details about these changes can be found on our GitHub repo.
+
+## 1.31.0 - 2022-10-04
### Added
diff --git a/certbot/certbot/__init__.py b/certbot/certbot/__init__.py
index 27b94a930..7e1c39776 100644
--- a/certbot/certbot/__init__.py
+++ b/certbot/certbot/__init__.py
@@ -1,3 +1,3 @@
"""Certbot client."""
# version number like 1.2.3a0, must have at least 2 parts, like 1.2
-__version__ = '1.31.0.dev0'
+__version__ = '1.32.0.dev0'
diff --git a/certbot/docs/cli-help.txt b/certbot/docs/cli-help.txt
index 8592825f2..aadfb67cb 100644
--- a/certbot/docs/cli-help.txt
+++ b/certbot/docs/cli-help.txt
@@ -35,7 +35,7 @@ manage your account:
--agree-tos Agree to the ACME server's Subscriber Agreement
-m EMAIL Email address for important account notifications
-optional arguments:
+options:
-h, --help show this help message and exit
-c CONFIG_FILE, --config CONFIG_FILE
path to config file (default: /etc/letsencrypt/cli.ini
@@ -126,7 +126,7 @@ optional arguments:
case, and to know when to deprecate support for past
Python versions and flags. If you wish to hide this
information from the Let's Encrypt server, set this to
- "". (default: CertbotACMEClient/1.30.0 (certbot;
+ "". (default: CertbotACMEClient/1.31.0 (certbot;
OS_NAME OS_VERSION) Authenticator/XXX Installer/YYY
(SUBCOMMAND; flags: FLAGS) Py/major.minor.patchlevel).
The flags encoded in the user agent are: --duplicate,