Update CHANGELOG.txt for version 0.1.7

This commit is contained in:
Alessio 2022-10-15 16:52:45 -04:00
parent fe305ec2ab
commit 0bf73d4bc5
3 changed files with 27 additions and 18 deletions

View File

@ -14,11 +14,11 @@ pipeline:
- mkdir persistence/test_profiles - mkdir persistence/test_profiles
- go test -bench=. -cover ./... - go test -bench=. -cover ./...
# integration_test: integration_test:
# image: offline-twitter/go image: offline-twitter/go
# commands: commands:
# - cd cmd - cd cmd
# - ./tests.sh - ./tests.sh
version_bump_test: version_bump_test:
image: offline-twitter/go image: offline-twitter/go
@ -39,16 +39,13 @@ pipeline:
- which ../cmd/tw - which ../cmd/tw
- ../cmd/tw fetch_user michaelmalice - ../cmd/tw fetch_user michaelmalice
dpkg_build_and_upload:
when:
branch: release-*
# dpkg_build_and_upload: image: offline-twitter/deploy
# when: commands:
# branch: release-* - export version=$(echo $CI_COMMIT_BRANCH | grep -Poh "(?<=^release-)\d+\.\d+\.\d+")
# image: offline-twitter/deploy - cd build
# commands: - ./build_dpkg.sh $version
# - export version=$(echo $CI_COMMIT_BRANCH | grep -Poh "(?<=^release-)\d+\.\d+\.\d+") - scp offline-twitter-engine_$${version}_all.deb aptrepo@apt.playfulpachyderm.com:/apt-repo/test-repo
# - cd build - ssh aptrepo@apt.playfulpachyderm.com "cd ~/test-repo && ./update.sh"
# - ./build_dpkg.sh $version
# - scp offline-twitter_$${version}_all.deb aptrepo@apt.playfulpachyderm.com:/apt-repo/test-repo
# - ssh aptrepo@apt.playfulpachyderm.com "cd ~/test-repo && ./update.sh"

View File

@ -91,3 +91,9 @@ v0.1.6
- Add support for `mobile.twitter.com` tweet URLs - Add support for `mobile.twitter.com` tweet URLs
- Add basic support for Spaces (i.e., can now basically detect whether a tweet links to a Space or not) - Add basic support for Spaces (i.e., can now basically detect whether a tweet links to a Space or not)
v0.1.7
------
- Add support for multiple videos as well as videos and images in the same tweet
- Restructure media file storage into sub-directories to improve performance when retrieving them

View File

@ -47,3 +47,9 @@ TODO sqlx
- increase coverage (not sure why this is done partially) - increase coverage (not sure why this is done partially)
TODO get-user-tweets-user-doesn't-exist TODO get-user-tweets-user-doesn't-exist
TODO bash-completions
- Should have bash completions.
TODO implement-custom-unmarshal
- the parsing might be excessively complex, and it doesn't correctly catch failures. Might be good to just implement the Unmarshal interface instead