Skip to content
This repository has been archived by the owner on Jan 12, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cujarrett/destiny-insights-bot
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.5.0
Choose a base ref
...
head repository: cujarrett/destiny-insights-bot
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.6.0
Choose a head ref
  • 6 commits
  • 4 files changed
  • 2 contributors

Commits on Nov 24, 2018

  1. Merge pull request #11 from cujarrett/update-braytech-endpoint

    Update braytech endpoint
    cujarrett authored Nov 24, 2018
    Copy the full SHA
    d87a69f View commit details

Commits on Nov 25, 2018

  1. Added 1.6.0 changes

    cujarrett committed Nov 25, 2018
    Copy the full SHA
    2cf42f3 View commit details
  2. Bumped version to 1.6.0

    cujarrett committed Nov 25, 2018
    Copy the full SHA
    9ec3831 View commit details
  3. Copy the full SHA
    07c642e View commit details
  4. Adds echo version script

    cujarrett committed Nov 25, 2018
    Copy the full SHA
    e6cabe5 View commit details
  5. Merge pull request #12 from cujarrett/add-echo-version

    Add echo version
    cujarrett authored Nov 25, 2018
    Copy the full SHA
    6d6a964 View commit details
Showing with 16 additions and 6 deletions.
  1. +8 −3 CHANGELOG.md
  2. +1 −1 package-lock.json
  3. +3 −2 package.json
  4. +4 −0 src/util/echo-version.js
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -5,13 +5,17 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [v1.6.0] - 2018-11-24
### Added
- npm script `start` to echo the app version, useful for when you want to check version deployed

## [v1.5.0] - 2018-11-24
### Changed
- Braytech endpoint where mods are looked up from.
- Braytech endpoint where mods are looked up from

## [v1.4.0] - 2018-11-14
### Changed
- Twitter Bot to tweet via `npm run tweet` and removes time from the conditions of when to tweet.
- Twitter Bot to tweet via `npm run tweet` and removes time from the conditions of when to tweet

## [v1.3.0] - 2018-11-13
### Changed
@@ -32,7 +36,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Integration with Twitter to post tweets
- Continuous Integration pipeline config

[Unreleased]: https://github.com/cujarrett/banshee-44-mods-bot/compare/v1.5.0...master
[Unreleased]: https://github.com/cujarrett/banshee-44-mods-bot/compare/v1.6.0...master
[v1.6.0]: https://github.com/cujarrett/banshee-44-mods-bot/compare/v1.5.0...v1.6.0
[v1.5.0]: https://github.com/cujarrett/banshee-44-mods-bot/compare/v1.4.0...v1.5.0
[v1.4.0]: https://github.com/cujarrett/banshee-44-mods-bot/compare/v1.3.0...v1.4.0
[v1.3.0]: https://github.com/cujarrett/banshee-44-mods-bot/compare/v1.2.0...v1.3.0
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "banshee-44-mods-bot",
"version": "1.5.0",
"version": "1.6.0",
"author": "Matt Jarrett",
"license": "MIT",
"description": "Node JS Twitter bot that tweets Destiny 2's Banshee-44 daily mods available for sale",
"main": "index.js",
"main": "src/index.js",
"scripts": {
"start": "node src/util/echo-version.js",
"tweet": "node src/index.js",
"test": "nyc --reporter=lcov tape test/**/*.js | tap-spec && nyc report",
"lint": "eslint .",
4 changes: 4 additions & 0 deletions src/util/echo-version.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
const fs = require("fs")

const appVersion = JSON.parse(fs.readFileSync("package.json", "utf8")).version
console.log(`banshee-44-mods-bot ${appVersion}`)