Skip to content

Commit

Permalink
Released v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andli committed Jun 18, 2019
1 parent 628e721 commit 1b50970
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 5 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.0.0] - 2019-06-18
### Added
- More tests, making it easier to spot bugs and errors.
- This changelog.

### Changed
- Refactored the menu printing function and added version number.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[![Build Status](https://travis-ci.org/andli/pymkm.svg?branch=master)](https://travis-ci.org/andli/pymkm) [![codecov](https://codecov.io/gh/andli/pymkm/branch/master/graph/badge.svg)](https://codecov.io/gh/andli/pymkm) [![Known Vulnerabilities](https://snyk.io/test/github/andli/pymkm/badge.svg?targetFile=requirements.txt)](https://snyk.io/test/github/andli/pymkm?targetFile=requirements.txt)

See the [Changelog](CHANGELOG.md) for what's new.

# 📙 pymkm
# 📙 PyMKM
Python wrapper for the [cardmarket.com API](https://api.cardmarket.com/ws/documentation/API_2.0:Main_Page) (version 2.0, using OAuth1 and the "Dedicated app" option).

The included sample app can update your stock prices to trend for non-foils, and to a competitive prices for foils, all rounded to nearest .25 €. A confirmation step allows you to check the result before uploading the new prices.
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""

__author__ = "Andreas Ehrlund"
__version__ = "0.9.5"
__version__ = "1.0.0"
__license__ = "MIT"

from pymkm_app import PyMkmApp
Expand Down
2 changes: 1 addition & 1 deletion pymkm_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""

__author__ = "Andreas Ehrlund"
__version__ = "0.9.5"
__version__ = "1.0.0"
__license__ = "MIT"

import csv
Expand Down
2 changes: 1 addition & 1 deletion pymkm_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""

__author__ = "Andreas Ehrlund"
__version__ = "0.9.5"
__version__ = "1.0.0"
__license__ = "MIT"

import math
Expand Down
2 changes: 1 addition & 1 deletion pymkmapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""

__author__ = "Andreas Ehrlund"
__version__ = "0.9.5"
__version__ = "1.0.0"
__license__ = "MIT"

import sys
Expand Down

0 comments on commit 1b50970

Please sign in to comment.