Skip to content

Commit

Permalink
docs: Update for v0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
carlansell94 committed Nov 10, 2024
1 parent 10a0920 commit adf84f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This is currently functional, but considered a pre-release version.
You can install the current pre-release version of this app using pip.

```
pip install https://github.com/carlansell94/ebay-sync/releases/download/v0.5/ebay-sync.tar.gz
pip install https://github.com/carlansell94/ebay-sync/releases/download/v0.6/ebay-sync.tar.gz
```

This is the recommended way to install this app, to ensure all dependencies are installed.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ebay-sync"
version = "0.6-dev"
version = "0.6"
authors = [
{ name="carlansell94" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/ebay_sync/setup/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ CREATE TABLE `refund` (
`fee_refund_amount` decimal(5,2) NOT NULL DEFAULT 0.00,
`fee_refund_currency` varchar(3) NOT NULL DEFAULT 'GBP',
PRIMARY KEY (`refund_id`),
CONSTRAINT `refund-original_id` FOREIGN KEY (`original_id`) REFERENCES `payment` (`payment_id`) ON UPDATE CASCADE
CONSTRAINT `refund-original_id` FOREIGN KEY (`original_payment_id`) REFERENCES `payment` (`payment_id`) ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

COMMIT;
Expand Down

0 comments on commit adf84f5

Please sign in to comment.