summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/changelog/example.tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-04-24 20:58:38 +0000
committerKarl Berry <karl@freefriends.org>2020-04-24 20:58:38 +0000
commit0df371d9ae601d747ffb97b8526944096fd02b86 (patch)
tree3edfa0dbfa56f0a30b6c42dbb2e061a745505a16 /Master/texmf-dist/doc/latex/changelog/example.tex
parent7a70be2280d759c40e96fd35f0a69eaa53548802 (diff)
changelog (24apr20)
git-svn-id: svn://tug.org/texlive/trunk@54864 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/changelog/example.tex')
-rw-r--r--Master/texmf-dist/doc/latex/changelog/example.tex44
1 files changed, 44 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/changelog/example.tex b/Master/texmf-dist/doc/latex/changelog/example.tex
new file mode 100644
index 00000000000..ad2272c5b86
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/changelog/example.tex
@@ -0,0 +1,44 @@
+\documentclass{article}
+\usepackage{changelog}
+\begin{document}
+\begin{changelog}[author=Rebecca Turner,
+ sectioncmd=\subsection,
+ title=Example changelog]
+\begin{version}
+\added
+ \item Really cool features
+\end{version}
+
+\begin{version}[date=2019-01-23, short]
+ A version with only a date
+\end{version}
+
+\begin{version}[v=1.1.0, simple]
+ \item A version with no date
+\end{version}
+
+\begin{version}[v=1.0.1, yanked, simple]
+ \item A version with a terrible bug
+\end{version}
+
+\begin{version}[v=1.0.0, date=2018-10-26]
+\added
+ \item A cool feature
+\changed
+ \item Some \textsc{api} detail
+\deprecated
+ \item Something that was a bad idea in the first place
+\removed
+ \item Something that was deprecated 3 versions ago
+\fixed
+ \item A bug that would delete files instead of saving them
+\security
+ \item improved with addition of buffer bound checks
+\misc
+ \item A change that doesn't fit into any other category
+\end{version}
+
+\shortversion{v=0.1.0, date=2018-10-19,
+ changes=Initial beta.}
+\end{changelog}
+\end{document}