sfq 0.0.24__tar.gz → 0.0.26__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.
@@ -143,6 +143,8 @@ jobs:
143
143
  echo "Branch 'docs' does not exist. Creating new orphan branch..."
144
144
  mkdir docs-branch
145
145
  cd docs-branch
146
+ git config user.name "github-actions[bot]"
147
+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
146
148
  git init
147
149
  git checkout --orphan docs
148
150
  git commit --allow-empty -m "CI: Initial empty commit"
@@ -157,6 +159,8 @@ jobs:
157
159
  rm -rf docs-branch/*
158
160
  cp -r docs/* docs-branch/
159
161
  cd docs-branch
162
+ git config user.name "github-actions[bot]"
163
+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
160
164
  git add .
161
165
  git commit -m "CI: Update documentation" || echo "No changes to commit"
162
166
  git push origin docs --force
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sfq
3
- Version: 0.0.24
3
+ Version: 0.0.26
4
4
  Summary: Python wrapper for the Salesforce's Query API.
5
5
  Author-email: David Moruzzi <sfq.pypi@dmoruzi.com>
6
6
  Keywords: salesforce,salesforce query
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "sfq"
3
- version = "0.0.24"
3
+ version = "0.0.26"
4
4
  description = "Python wrapper for the Salesforce's Query API."
5
5
  readme = "README.md"
6
6
  authors = [{ name = "David Moruzzi", email = "sfq.pypi@dmoruzi.com" }]
@@ -90,7 +90,7 @@ class SFAuth:
90
90
  access_token: Optional[str] = None,
91
91
  token_expiration_time: Optional[float] = None,
92
92
  token_lifetime: int = 15 * 60,
93
- user_agent: str = "sfq/0.0.24",
93
+ user_agent: str = "sfq/0.0.26",
94
94
  sforce_client: str = "_auto",
95
95
  proxy: str = "_auto",
96
96
  ) -> None:
@@ -3,5 +3,5 @@ requires-python = ">=3.9"
3
3
 
4
4
  [[package]]
5
5
  name = "sfq"
6
- version = "0.0.24"
6
+ version = "0.0.26"
7
7
  source = { editable = "." }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes