Skip to content

Commit 4375580

Browse files
authored
Merge pull request #28 from fossology/feat/release-0.1.1
Feat/release 0.1.1
2 parents 2e03153 + b9732e9 commit 4375580

File tree

4 files changed

+60
-54
lines changed

4 files changed

+60
-54
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ A simple wrapper for the Fossology REST API.
2222

2323
See `the OpenAPI specification <https://raw.githubusercontent.com/fossology/fossology/master/src/www/ui/api/documentation/openapi.yaml>`_ used to implement this library.
2424

25-
Compatible with API version 1.0.13
25+
Compatible with API version 1.0.16
2626

2727
Documentation
2828
=============

poetry.lock

Lines changed: 53 additions & 52 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "fossology"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "A library to automate Fossology from Python scripts"
55
authors = ["Marion Deveaud <[email protected]>"]
66
license = "MIT License"

tests/test_uploads.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ def test_upload_file(self):
4343
self.assertEqual(
4444
test_upload.uploadname, upload_filename, "Uploadname on the server is wrong"
4545
)
46+
self.assertEqual(
47+
test_upload.filesha1,
48+
"D4D663FC2877084362FB2297337BE05684869B00",
49+
"Filesha1 on the server is wrong",
50+
)
4651

4752
def test_upload_from_vcs(self):
4853
vcs = {

0 commit comments

Comments
 (0)