Skip to content

Commit

Permalink
Merge branch 'main' into refactor-readdbc
Browse files Browse the repository at this point in the history
  • Loading branch information
esloch committed Sep 15, 2023
2 parents d712585 + 44c7121 commit e54d450
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ clean-pyc: ## Remove Python file artifacts
clean-test: ## Remove tests databases
@find ./ -name '*.dbf' -exec rm -f {} \;
@find ./ -name '*csv.gz' -exec rm -f {} \;
@find ./ -name '*.pytest_cache' -exec rm -rf {} \;


.PHONY: release
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pandas = "^2.1.0"

[tool.poetry]
name = "pyreaddbc"
version = "1.0.0" # changed by semantic-release
version = "1.1.0" # changed by semantic-release
description = "pyreaddbc package"
readme = "README.md"
authors = ["Flavio Codeco Coelho <fccoelho@gmail.com>", "Sandro Loch <es.loch@gmail.com>"]
Expand All @@ -26,7 +26,7 @@ classifiers = [ #! Update me
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU Affero General Public License AGPL-3.0",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
2 changes: 1 addition & 1 deletion pyreaddbc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def get_version() -> str:
try:
return importlib_metadata.version(__name__)
except importlib_metadata.PackageNotFoundError: # pragma: no cover
return "1.0.0" # changed by semantic-release
return "1.1.0" # changed by semantic-release


version: str = get_version()
Expand Down
2 changes: 1 addition & 1 deletion pyreaddbc/_readdbc.c
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ void dbc2dbf(char** input_file, char** output_file) {
perror("");
return;
}

buf[header-1] = 0x0D;

ret = fwrite(buf, 1, header, output);
Expand Down

0 comments on commit e54d450

Please sign in to comment.