Skip to content

Commit

Permalink
Merge pull request #1 from HarHarLinks/dependabot
Browse files Browse the repository at this point in the history
Dependabot
  • Loading branch information
HarHarLinks authored Oct 7, 2023
2 parents 50be33e + 89c04c3 commit 4b3ac66
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 5 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "pip" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
34 changes: 33 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Changelog

## v0.2.1

Quick patch to bump `matrix-nio` to version `>=0.18`, as otherwise that is required for the bot to work with Synapse 1.38+.
See https://github.com/anoadragon453/matrix-reminder-bot/issues/86 for details on the bug.

Otherwise, full changelog below:

### Features

* Improve the '!listreminders' output.
* Add one-letter aliases to each command.
* Add 'remind' as an alias for the 'remindme' command.
* Use a pill when reminding a user.

### Bugfixes

* Timezone errors due to daylight savings times will be corrected after a bridge restart.
* Prevent timezone-related errors when creating a reminder.
* Better parsing of reminders that have newlines.

### Documentation

* Add release instructions.

### Internal Changes

* Update setup.py to indicate Python 3.6+ is required.
* Bump minimum version of matrix-nio to 0.18.
* Bump the version of libolm to 3.2.4.
* Bump the version of Python in the CI to 3.9.


## v0.2.0

Lots of changes, updates and polishing! Find the list below:
Expand Down Expand Up @@ -31,4 +63,4 @@ The minimum Python version is now 3.6.

## v0.1.0

Initial release, all known bugs squashed!
Initial release, all known bugs squashed!
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# An optional LIBOLM_VERSION build argument which sets the
# version of libolm to build against. For example:
#
# docker build -f docker/Dockerfile --build-arg LIBOLM_VERSION=3.1.4 .
# docker build -f docker/Dockerfile --build-arg LIBOLM_VERSION=3.2.4 .
#


Expand All @@ -30,7 +30,7 @@ FROM docker.io/python:${PYTHON_VERSION}-alpine3.12 as builder
##

# Install libolm build dependencies
ARG LIBOLM_VERSION=3.2.1
ARG LIBOLM_VERSION=3.2.4
RUN apk add --no-cache \
make \
cmake \
Expand Down
2 changes: 1 addition & 1 deletion matrix_reminder_bot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
print("matrix_reminder_bot requires Python 3.6 or above.")
sys.exit(1)

__version__ = "0.2.0"
__version__ = "0.2.1"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def read_file(path_segments):
description="A matrix bot to remind you about things!",
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=[
"matrix-nio[e2e]>=0.10.0",
"matrix-nio[e2e]>=0.18.0",
"Markdown>=3.1.1",
"PyYAML>=5.1.2",
"dateparser>=0.7.4",
Expand Down

0 comments on commit 4b3ac66

Please sign in to comment.