-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #291 from jantman/sales-tax
1.2.0 - Track sales tax paid on transactions
- Loading branch information
Showing
156 changed files
with
348 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################## | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
28 changes: 28 additions & 0 deletions
28
biweeklybudget/alembic/versions/d01774fa3ae3_add_transaction_field_to_store_sales_.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
"""add Transaction field to store sales tax paid | ||
Revision ID: d01774fa3ae3 | ||
Revises: f5a002127934 | ||
Create Date: 2024-01-24 19:47:44.629591 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = 'd01774fa3ae3' | ||
down_revision = 'f5a002127934' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
op.add_column('transactions', sa.Column('sales_tax', sa.Numeric(precision=10, scale=4), nullable=False)) | ||
# ### end Alembic commands ### | ||
|
||
|
||
def downgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
op.drop_column('transactions', 'sales_tax') | ||
# ### end Alembic commands ### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2017 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The latest version of this package is available at: | |
<http://github.com/jantman/biweeklybudget> | ||
################################################################################ | ||
Copyright 2016 Jason Antman <[email protected]> <http://www.jasonantman.com> | ||
Copyright 2016-2024 Jason Antman <http://www.jasonantman.com> | ||
This file is part of biweeklybudget, also known as biweeklybudget. | ||
|
Oops, something went wrong.