-
Notifications
You must be signed in to change notification settings - Fork 17
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 #33 from fterh/release-v1.0
Release v1.0.0
- Loading branch information
Showing
7 changed files
with
133 additions
and
73 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
dist: xenial | ||
services: | ||
- docker | ||
language: python | ||
python: | ||
- "3.7" | ||
before_install: | ||
- docker pull python:3 | ||
install: | ||
- pip install pipenv | ||
script: | ||
before_script: | ||
- pipenv install | ||
script: | ||
- pipenv run invoke test | ||
deploy: | ||
provider: heroku | ||
api_key: | ||
secure: "$HEROKU_API_KEY" | ||
app: | ||
master: fterh-sneakpeek | ||
develop: fterh-sneakpeek-staging |
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,56 @@ | ||
## Changelog | ||
## v1.0.0 | ||
* Add support for Docker | ||
* Set up continuous deployment (Heroku) | ||
* Update README | ||
* Separate changelog into CHANGELOG.md | ||
|
||
### v0.8.0-beta | ||
* Fix program stops running after a while (issue #30) | ||
* Implement proper logging | ||
* Clean up and refactor codebase | ||
* Travis CI | ||
|
||
### v0.7.0-beta | ||
* Fix random crashes (issue #25) | ||
* Fix README formatting issues | ||
* Clean up code | ||
* Update README developer documentation | ||
|
||
### v0.6.0-beta | ||
* Update subreddit monitoring implementation | ||
|
||
### v0.5.0-beta | ||
* Fix program crash when exception occurs (issue #13) | ||
* Fix exception in handling Ricemedia links (issue #19) | ||
* Add support for businesstimes.com.sg, tnp.sg, yahoo.com | ||
* Add support for CNAlifestyle | ||
|
||
### v0.4.0-beta | ||
* Add Straits Times support | ||
|
||
### v0.3.0-beta | ||
* Temporarily remove Straits Times support | ||
(until premium article detection feature) | ||
* Fix Todayonline article handling | ||
* Fix Ricemedia article handling | ||
* Update AbstractBaseHandler `handle` method definition | ||
* Add tests | ||
|
||
### v0.2.2-beta | ||
* Fix scheduling bug | ||
|
||
### v0.2.1-beta | ||
* Remove ricemedia.co from list of supported sites (incompatibility) | ||
* Fix start script to run immediately | ||
* Fix long lines in README | ||
|
||
### v0.2.0-beta | ||
* Add scheduling to run every 2 minutes | ||
* Update database module to be compatible with new database table structure | ||
(3 columns) | ||
|
||
### v0.1.0-beta | ||
* Minimum viable product | ||
* Supports channelnewsasia.com, mothership.sg, ricemedia.co, straitstimes.com, | ||
todayonline.com, zula.sg |
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,8 @@ | ||
FROM python:3 | ||
WORKDIR / | ||
COPY . / | ||
RUN pip install pipenv | ||
RUN pipenv install | ||
RUN pipenv run pip freeze > requirements.txt | ||
RUN pip install -r requirements.txt | ||
CMD ["python", "main.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
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,3 @@ | ||
build: | ||
docker: | ||
worker: Dockerfile |
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 @@ | ||
beautifulsoup4==4.7.1 | ||
certifi==2018.11.29 | ||
chardet==3.0.4 | ||
cssselect==1.0.3 | ||
feedfinder2==0.0.4 | ||
feedparser==5.2.1 | ||
idna==2.8 | ||
invoke==1.2.0 | ||
jieba3k==0.35.1 | ||
lxml==4.3.0 | ||
newspaper3k==0.2.8 | ||
nltk==3.4 | ||
Pillow==5.4.1 | ||
praw==6.0.0 | ||
prawcore==1.0.0 | ||
python-dateutil==2.7.5 | ||
python-dotenv==0.10.1 | ||
PyYAML==3.13 | ||
requests==2.21.0 | ||
requests-file==1.4.3 | ||
schedule==0.5.0 | ||
singledispatch==3.4.0.3 | ||
six==1.12.0 | ||
soupsieve==1.7 | ||
tinysegmenter==0.3 | ||
tldextract==2.2.0 | ||
update-checker==0.16 | ||
urllib3==1.24.1 |