Skip to content

Commit

Permalink
Merge pull request #93 from dkolmakov/pypi-publish-sdist
Browse files Browse the repository at this point in the history
Pypi publish sdist
  • Loading branch information
dkolmakov authored Mar 10, 2023
2 parents 53d7f79 + c5d095f commit b195d16
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
- run: python3 -m pip install --upgrade build && python3 -m build
- run: python3 -m pip install --upgrade build && python3 -m build . --sdist
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.2)
project(hm VERSION 1.0.0 LANGUAGES CXX)
project(hm VERSION 1.1.0 LANGUAGES CXX)

include(GNUInstallDirs)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
with open(path.join(cwd, 'docs', 'python_package.md'), encoding='utf-8') as f:
long_description = f.read()

HM_DB_VERSION = "0.1.7"
HM_DB_VERSION = "1.1.0"


class build_ext(build_ext_orig):
Expand Down
2 changes: 1 addition & 1 deletion src/configurator.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2019-2022 Dmitry Kolmakov
Copyright 2019-2023 Dmitry Kolmakov
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/const_conf.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2019-2022 Dmitry Kolmakov
Copyright 2019-2023 Dmitry Kolmakov
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/database.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2019-2022 Dmitry Kolmakov
Copyright 2019-2023 Dmitry Kolmakov
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/history.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2019-2022 Dmitry Kolmakov
Copyright 2019-2023 Dmitry Kolmakov
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2019 Dmitry Kolmakov
Copyright 2019-2023 Dmitry Kolmakov
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions src/parser.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2019-2022 Dmitry Kolmakov
Copyright 2019-2023 Dmitry Kolmakov
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -53,7 +53,7 @@ class ArgParser {
static void show_version(std::string name) {
std::cout
<< name << " " << HM_VERSION << std::endl
<< "Copyright 2019-2022 Dmitry Kolmakov." << std::endl
<< "Copyright 2019-2023 Dmitry Kolmakov." << std::endl
<< "License ASLv2.0: Apache License, Version 2.0 "
"<http://www.apache.org/licenses/LICENSE-2.0>."
<< std::endl
Expand Down
2 changes: 1 addition & 1 deletion src/progress_bar.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2019-2022 Dmitry Kolmakov
Copyright 2019-2023 Dmitry Kolmakov
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/query.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2019-2022 Dmitry Kolmakov
Copyright 2019-2023 Dmitry Kolmakov
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/schema.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2019-2022 Dmitry Kolmakov
Copyright 2019-2023 Dmitry Kolmakov
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/utils.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2019-2022 Dmitry Kolmakov
Copyright 2019-2023 Dmitry Kolmakov
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down

0 comments on commit b195d16

Please sign in to comment.