-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
783a828
commit aa1e804
Showing
23 changed files
with
210 additions
and
406 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# https://linkchecker.github.io/linkchecker/man/linkcheckerrc.html | ||
[filtering] | ||
ignore= | ||
|
||
[AnchorCheck] |
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,20 @@ | ||
# Changelog | ||
|
||
## v0.2.0 (2024-02-03) | ||
|
||
[GitHub release](https://github.com/davidpeckham/vin/releases/tag/v0.2.0) | ||
|
||
### New Features | ||
|
||
* Validate VIN length, characters, and check digit, with the option to correct the check digit. | ||
* Decode the manufacturer and model year from a VIN | ||
* Documentation | ||
|
||
### Fixes | ||
|
||
* Updated annotations for `VIN.vds` and `VIN.vis` to show that they don't return None | ||
* Annotated `VIN.model_year` to show that it returns int, and removed the else condition that allowed it to return None | ||
* Inlined `VIN.is_vin_character` in the default constructor | ||
* Converted property `VIN.check_digit` to class method `VIN.calculate_check_digit` | ||
* Converted ``constants.VIN_CHARACTERS`` from list to string | ||
* Renamed GitHub workflows as .yml (from .yaml) |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# VPIC API | ||
# API | ||
|
||
::: vin.VIN | ||
options: | ||
|
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,9 @@ | ||
# Help | ||
|
||
## :material-api: API Documentation | ||
|
||
The [API documentation](api.md) is the best way to learn what VIN can do for you. | ||
|
||
## :simple-github: GitHub Issues | ||
|
||
Use [GitHub issues](https://github.com/davidpeckham/vin/issues) to ask questions, report issues, and suggest changes. |
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,5 @@ | ||
import shutil | ||
|
||
|
||
def copy_history(*args, **kwargs): | ||
shutil.copy("CHANGELOG.md", "docs/changelog.md") |
Oops, something went wrong.