From c274e5da8e89cd98c0b454eb99bd4b32d229a707 Mon Sep 17 00:00:00 2001 From: Oliver Date: Thu, 23 Nov 2023 12:43:06 +0100 Subject: [PATCH] release 2.0.0 --- .github/pull_request_template.yml | 2 +- .github/workflows/build_wheels.yml | 2 +- dev/sphinx/source/conf.py | 12 +++--- environment.yml | 2 +- setup.py | 2 +- .../main.py | 38 +++++++++---------- 6 files changed, 29 insertions(+), 29 deletions(-) rename {unicorn-binance-suite => unicorn_binance_suite}/main.py (97%) diff --git a/.github/pull_request_template.yml b/.github/pull_request_template.yml index f2790c0..d2ecb68 100644 --- a/.github/pull_request_template.yml +++ b/.github/pull_request_template.yml @@ -41,7 +41,7 @@ - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [ ] I have read the -**[CONTRIBUTING](https://github.com/LUCIT-Systems-and-Development/unicorn-binance-suite/blob/master/CONTRIBUTING.md)** +**[CONTRIBUTING](https://github.com/LUCIT-Systems-and-Development/unicorn_binance_suite/blob/master/CONTRIBUTING.md)** document. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed. diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 9a9f85f..83baf2b 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -88,7 +88,7 @@ jobs: dist/*.tar.gz dist/*.whl generate_release_notes: true - name: unicorn-binance-suite + name: unicorn_binance_suite prerelease: false tag_name: 1.1.0 token: ${{ secrets.GITHUB_TOKEN }} diff --git a/dev/sphinx/source/conf.py b/dev/sphinx/source/conf.py index 19da80b..7fa5fcf 100644 --- a/dev/sphinx/source/conf.py +++ b/dev/sphinx/source/conf.py @@ -20,7 +20,7 @@ # -- Project information ----------------------------------------------------- -project = 'unicorn-binance-suite' +project = 'unicorn_binance_suite' copyright = '2019-2023, LUCIT Systems and Development. All Rights Reserved.' author = 'LUCIT Systems and Development' @@ -85,7 +85,7 @@ html_theme = 'python_docs_theme_lucit' html_context = {'github_user_name': 'LUCIT-Systems-and-Development', - 'github_repo_name': 'unicorn-binance-suite', + 'github_repo_name': 'unicorn_binance_suite', 'project_name': project, 'matomo_url': "https://webmon.lucit.services/matomo.php?idsite=5&rec=1", 'freshchat_src': "//eu.fw-cdn.com/10659511/361973.js", @@ -144,7 +144,7 @@ # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - (master_doc, 'unicorn-binance-suite.tex', 'unicorn-binance-suite Documentation', + (master_doc, 'unicorn_binance_suite.tex', 'unicorn_binance_suite Documentation', 'LUCIT Systems and Development', 'manual'), ] @@ -154,7 +154,7 @@ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - (master_doc, 'unicorn-binance-suite', 'unicorn-binance-suite Documentation', + (master_doc, 'unicorn_binance_suite', 'unicorn_binance_suite Documentation', [author], 1) ] @@ -165,8 +165,8 @@ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - (master_doc, 'unicorn-binance-suite', 'unicorn-binance-suite Documentation', - author, 'unicorn-binance-suite', 'One line description of project.', + (master_doc, 'unicorn_binance_suite', 'unicorn_binance_suite Documentation', + author, 'unicorn_binance_suite', 'One line description of project.', 'Miscellaneous'), ] diff --git a/environment.yml b/environment.yml index 80d6bb3..0dbc602 100644 --- a/environment.yml +++ b/environment.yml @@ -1,4 +1,4 @@ -name: unicorn-binance-suite +name: unicorn_binance_suite channels: - lucit diff --git a/setup.py b/setup.py index a4ef4fe..481157f 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ long_description = fh.read() setup( - name='unicorn-binance-suite', + name='unicorn_binance_suite', version='1.1.0', author="LUCIT Systems and Development", author_email='info@lucit.tech', diff --git a/unicorn-binance-suite/main.py b/unicorn_binance_suite/main.py similarity index 97% rename from unicorn-binance-suite/main.py rename to unicorn_binance_suite/main.py index ac1f627..bd4c069 100644 --- a/unicorn-binance-suite/main.py +++ b/unicorn_binance_suite/main.py @@ -1,19 +1,19 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- -# -# File: unicorn_binance_suite/main.py -# -# Part of ‘UNICORN Binance Suite’ -# Project website: https://www.lucit.tech/unicorn-binance-suite.html -# Github: https://github.com/LUCIT-Systems-and-Development/unicorn-binance-suite -# Documentation: https://unicorn-binance-suite.docs.lucit.tech -# PyPI: https://pypi.org/project/unicorn-binance-suite -# LUCIT Online Shop: https://shop.lucit.services/software -# -# License: LSOSL - LUCIT Synergetic Open Source License -# https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE -# -# Author: LUCIT Systems and Development -# -# Copyright (c) 2019-2023, LUCIT Systems and Development (https://www.lucit.tech) -# All rights reserved. +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# +# File: unicorn_binance_suite/main.py +# +# Part of ‘UNICORN Binance Suite’ +# Project website: https://www.lucit.tech/unicorn-binance-suite.html +# Github: https://github.com/LUCIT-Systems-and-Development/unicorn-binance-suite +# Documentation: https://unicorn-binance-suite.docs.lucit.tech +# PyPI: https://pypi.org/project/unicorn-binance-suite +# LUCIT Online Shop: https://shop.lucit.services/software +# +# License: LSOSL - LUCIT Synergetic Open Source License +# https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/LICENSE +# +# Author: LUCIT Systems and Development +# +# Copyright (c) 2019-2023, LUCIT Systems and Development (https://www.lucit.tech) +# All rights reserved.