plain.email 0.10.1__tar.gz → 0.11.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,6 @@
4
4
  *.py[co]
5
5
  __pycache__
6
6
  *.DS_Store
7
- .coverage
8
7
 
9
8
  # Test apps
10
9
  plain*/tests/.plain
@@ -12,7 +11,7 @@ plain*/tests/.plain
12
11
  # Ottobot
13
12
  .aider*
14
13
 
15
- /llms-full.txt
16
-
17
14
  # Plain temp dirs
18
15
  .plain
16
+
17
+ .vscode
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: plain.email
3
+ Version: 0.11.0
4
+ Summary: Everything you need to send email in Plain.
5
+ Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
6
+ License-Expression: BSD-3-Clause
7
+ License-File: LICENSE
8
+ Requires-Python: >=3.13
9
+ Requires-Dist: plain<1.0.0
10
+ Description-Content-Type: text/markdown
11
+
12
+ # plain.email
13
+
14
+ **Everything you need to send email in Plain.**
15
+
16
+ - [Installation](#installation)
17
+
18
+ ## Installation
19
+
20
+ Install the `plain.email` package from [PyPI](https://pypi.org/project/plain.email/):
21
+
22
+ ```bash
23
+ uv add plain.email
24
+ ```
25
+
26
+ Add `plain.email` to your `INSTALLED_PACKAGES`:
27
+
28
+ ```python
29
+ # settings.py
30
+ INSTALLED_PACKAGES = [
31
+ # ...
32
+ "plain.email",
33
+ ]
34
+ ```
@@ -0,0 +1,23 @@
1
+ # plain-email changelog
2
+
3
+ ## [0.11.0](https://github.com/dropseed/plain/releases/plain-email@0.11.0) (2025-09-19)
4
+
5
+ ### What's changed
6
+
7
+ - Updated Python minimum requirement to 3.13 ([d86e307](https://github.com/dropseed/plain/commit/d86e307))
8
+ - Improved README with installation instructions and table of contents ([4ebecd1](https://github.com/dropseed/plain/commit/4ebecd1))
9
+ - Updated package description to "Everything you need to send email in Plain" ([4ebecd1](https://github.com/dropseed/plain/commit/4ebecd1))
10
+
11
+ ### Upgrade instructions
12
+
13
+ - Update your Python version to 3.13 or higher
14
+
15
+ ## [0.10.2](https://github.com/dropseed/plain/releases/plain-email@0.10.2) (2025-06-23)
16
+
17
+ ### What's changed
18
+
19
+ - No user-facing changes. Internal documentation and tooling updates only ([82710c3](https://github.com/dropseed/plain/commit/82710c3), [9a1963d](https://github.com/dropseed/plain/commit/9a1963d), [e1f5dd3](https://github.com/dropseed/plain/commit/e1f5dd3)).
20
+
21
+ ### Upgrade instructions
22
+
23
+ - No changes required
@@ -0,0 +1,23 @@
1
+ # plain.email
2
+
3
+ **Everything you need to send email in Plain.**
4
+
5
+ - [Installation](#installation)
6
+
7
+ ## Installation
8
+
9
+ Install the `plain.email` package from [PyPI](https://pypi.org/project/plain.email/):
10
+
11
+ ```bash
12
+ uv add plain.email
13
+ ```
14
+
15
+ Add `plain.email` to your `INSTALLED_PACKAGES`:
16
+
17
+ ```python
18
+ # settings.py
19
+ INSTALLED_PACKAGES = [
20
+ # ...
21
+ "plain.email",
22
+ ]
23
+ ```
@@ -1,11 +1,11 @@
1
1
  [project]
2
2
  name = "plain.email"
3
- version = "0.10.1"
4
- description = "Email sending for Plain."
3
+ version = "0.11.0"
4
+ description = "Everything you need to send email in Plain."
5
5
  authors = [{name = "Dave Gaeddert", email = "dave.gaeddert@dropseed.dev"}]
6
6
  license = "BSD-3-Clause"
7
7
  readme = "README.md"
8
- requires-python = ">=3.11"
8
+ requires-python = ">=3.13"
9
9
  dependencies = [
10
10
  "plain<1.0.0",
11
11
  ]
@@ -1,26 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: plain.email
3
- Version: 0.10.1
4
- Summary: Email sending for Plain.
5
- Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
6
- License-Expression: BSD-3-Clause
7
- License-File: LICENSE
8
- Requires-Python: >=3.11
9
- Requires-Dist: plain<1.0.0
10
- Description-Content-Type: text/markdown
11
-
12
- # plain.email
13
-
14
- Everything you need to send email.
15
-
16
- ## Installation
17
-
18
- Add `plain.email` to your `INSTALLED_APPS`:
19
-
20
- ```python
21
- # settings.py
22
- INSTALLED_APPS = [
23
- # ...
24
- 'plain.email',
25
- ]
26
- ```
@@ -1,15 +0,0 @@
1
- # plain.email
2
-
3
- Everything you need to send email.
4
-
5
- ## Installation
6
-
7
- Add `plain.email` to your `INSTALLED_APPS`:
8
-
9
- ```python
10
- # settings.py
11
- INSTALLED_APPS = [
12
- # ...
13
- 'plain.email',
14
- ]
15
- ```
File without changes
File without changes