Skip to content

Commit

Permalink
version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdottori-stark committed Apr 17, 2020
1 parent 93104f5 commit 2002096
Show file tree
Hide file tree
Showing 61 changed files with 4,948 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Folders
.idea
node_modules

# Files
**/privateKey.pem
**/publicKey.pem
**/development.json
**/sandbox.json
**/snippet.js
11 changes: 11 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This file is written to be a whitelist instead of a blacklist. Start by
# ignoring everything, then add back the files we want to be included in the
# final NPM package.
*

# And these are the files that are allowed.
!/LICENSE
!/README.md
!/package.json
!/index.js
!/sdk/**/**/*
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 the following versioning pattern:

Given a version number MAJOR.MINOR.PATCH, increment:

- MAJOR version when the **API** version is incremented. This may include backwards incompatible changes;
- MINOR version when **breaking changes** are introduced OR **new functionalities** are added in a backwards compatible manner;
- PATCH version when backwards compatible bug **fixes** are implemented.

## [Unreleased]
### Added
- Full Stark Bank API v2 compatibility
Loading

0 comments on commit 2002096

Please sign in to comment.