Skip to content

Commit

Permalink
docs: update dates and version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Mar 7, 2024
1 parent ac58ba9 commit cceb6cb
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Changelog
These are changes to Cog over time.

Unreleased
----------
3.4.1 – March 7 2024
--------------------

- Dropped support for Python 2.7, 3.5, and 3.6, and added 3.11 and 3.12.

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2004-2023 Ned Batchelder
Copyright (c) 2004-2024 Ned Batchelder

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion cogapp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
""" Cog content generation tool.
http://nedbatchelder.com/code/cog
Copyright 2004-2023, Ned Batchelder.
Copyright 2004-2024, Ned Batchelder.
"""

from .cogapp import Cog, CogUsageError, main
2 changes: 1 addition & 1 deletion cogapp/cogapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from .whiteutils import commonPrefix, reindentBlock, whitePrefix
from .utils import NumberedFileReader, Redirectable, change_dir, md5

__version__ = "3.4.0"
__version__ = "3.4.1"

usage = """\
cog - generate content with inlined Python code.
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = 'cog'
copyright = '2004–2023, Ned Batchelder'
copyright = '2004–2024, Ned Batchelder'
author = 'Ned Batchelder'
release = '3.4.0'
release = '3.4.1'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Cog
Cog is a file generation tool. It lets you use pieces of Python code
as generators in your source files to generate whatever text you need.

This page describes version 3.3.0, released November 19, 2021.
This page describes version 3.4.1, released March 7, 2024.


What does it do?
Expand Down

0 comments on commit cceb6cb

Please sign in to comment.