Skip to content

Commit

Permalink
Add release notes (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Jan 11, 2019
1 parent 36bc4c4 commit f74697d
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 3 deletions.
5 changes: 3 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
author = 'Michael D. Ekstrand'

# The short X.Y version
version = '0.3'
version = '0.5'
# The full version, including alpha/beta/rc tags
release = '0.3.0'
release = '0.5.0'


# -- General configuration ---------------------------------------------------
Expand All @@ -39,6 +39,7 @@
# ones.
extensions = [
'nbsphinx',
'recommonmark',
'sphinx.ext.napoleon',
'sphinx.ext.autodoc',
'sphinx.ext.intersphinx',
Expand Down
1 change: 1 addition & 0 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Resources
evaluation/index
algorithms
util
releases


Indices and tables
Expand Down
26 changes: 26 additions & 0 deletions doc/releases.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Release Notes

## 0.5.0 (in progress)

LensKit 0.5.0 modifies the algorithm APIs to follow the SciKit design patterns instead of
our previous custom patterns. Highlights of this change:

- Algorithms are trained in-place — we no longer have distinct model objects.
- Model data is stored as attributes on the algorithm object that end in `_`.
- Instead of writing `model = algo.train_model(ratings)`, call `algo.fit(ratings)`.

We also have some new capabilities:

- Ben Frederickson's Implicit library

## 0.3.0

A number of improvements, including replacing Cython/OpenMP with Numba and adding ALS.

## 0.2.0

A lot of fixes to get ready for RecSys.

## 0.1.0

Hello, world!
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
'docs': [
'sphinx >= 1.8',
'sphinx_rtd_theme',
'nbsphinx'
'nbsphinx',
'recommonmark'
],
'hpf': [
'hpfrec'
Expand Down

0 comments on commit f74697d

Please sign in to comment.