Skip to content

Commit 0a65ea2

Browse files
authored
Release v6.13.0 (#441)
1 parent df2f0c9 commit 0a65ea2

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[bumpversion]
22
commit = True
33
tag = True
4-
current_version = 6.12.0
4+
current_version = 6.13.0
55

66
[bumpversion:file:nylas/_client_sdk_version.py]

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
nylas-python Changelog
22
======================
33

4-
Unreleased
4+
v6.13.0
55
----------
66
* Fixed from field handling in messages.send() to properly map "from_" field to "from field
77
* Fixed content_id handling for large inline attachments to use content_id as field name instead of generic file{index}

Contributing.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,26 +42,35 @@ source .venv/bin/activate
4242
# .venv\Scripts\activate
4343
```
4444

45+
**Important**: If you encounter issues with `pip` not being available in the virtual environment, run:
46+
47+
```bash
48+
# Ensure pip is available in the virtual environment
49+
python -m ensurepip --upgrade
50+
```
51+
4552
### 3. Install Development Dependencies
4653

4754
Install the package in editable mode with all optional dependencies:
4855

4956
```bash
5057
# Install the package in development mode with all optional dependencies
51-
pip install -e ".[test,docs,release]"
58+
python -m pip install -e ".[test,docs,release]"
5259

5360
# Or install specific dependency groups as needed:
54-
# pip install -e ".[test]" # For running tests
55-
# pip install -e ".[docs]" # For building documentation
56-
# pip install -e ".[release]" # For release management
61+
# python -m pip install -e ".[test]" # For running tests
62+
# python -m pip install -e ".[docs]" # For building documentation
63+
# python -m pip install -e ".[release]" # For release management
5764
```
5865

66+
**Note**: We use `python -m pip` instead of just `pip` to ensure we're using the pip from the virtual environment.
67+
5968
### 4. Install Code Quality Tools
6069

6170
Install the linting and formatting tools used by the project:
6271

6372
```bash
64-
pip install pylint black
73+
python -m pip install pylint black
6574
```
6675

6776
### 5. Verify Your Setup

nylas/_client_sdk_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__VERSION__ = "6.12.0"
1+
__VERSION__ = "6.13.0"

0 commit comments

Comments
 (0)