Skip to content

Commit

Permalink
Removed duplicate entries in changelog and added sphinx conf.
Browse files Browse the repository at this point in the history
  • Loading branch information
nzlosh committed Sep 14, 2023
1 parent 01809f3 commit 9fb5d50
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 24 deletions.
24 changes: 0 additions & 24 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,30 +23,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Fixed
- Ensure ephemeral messages return a ts attribute. #81 (@TheJokersThief)

## [0.2.1] 2022-10-02
### Added
- Send cards to threads, when requested. #76 (@TheJokersThief)
- Ability to update slack messages. #75 (@TheJokersThief)
- Allow supplying raw attachments/blocks for messages. #83 (@TheJokersThief)

### Changed
- refactored repository for setting it up as a pypi package. #82, #89 (@sijis)

### Fixed
- Ensure ephemeral messages return a ts attribute. #81 (@TheJokersThief)

## [0.2.1] 2022-10-02
### Added
- Send cards to threads, when requested. #76 (@TheJokersThief)
- Ability to update slack messages. #75 (@TheJokersThief)
- Allow supplying raw attachments/blocks for messages. #83 (@TheJokersThief)

### Changed
- refactored repository for setting it up as a pypi package. #82, #89 (@sijis)

### Fixed
- Ensure ephemeral messages return a ts attribute. #81 (@TheJokersThief)

## [0.2.0] 2022-09-22
### Added
- Ability to update slack messages. #75 (@TheJokersThief)
Expand Down
56 changes: 56 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Configuration file for the Sphinx documentation builder.
#
# This file only contains a selection of the most common options. For a full
# list see the documentation:
# http://www.sphinx-doc.org/en/master/config

# -- Path setup --------------------------------------------------------------

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))


# -- Project information -----------------------------------------------------

project = "errbot-backend-slackv3"
copyright = "2019-20223, errbot-backend-slackv3 contributors"
author = "errbot-backend-slackv3 contributors"

# The full version, including alpha/beta/rc tags
release = "0.2.1"


# -- General configuration ---------------------------------------------------

master_doc = "index"
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = []

# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]


# -- Options for HTML output -------------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
# html_theme = 'alabaster'
html_theme = "sphinx_rtd_theme"

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ["_static"]

0 comments on commit 9fb5d50

Please sign in to comment.