Skip to content

Commit fb2f6d3

Browse files
Merge branch 'master' into main
2 parents 62f49ee + 7fabd12 commit fb2f6d3

File tree

3 files changed

+4
-25
lines changed

3 files changed

+4
-25
lines changed

.github/workflows/workflow.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Upload Python Package
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77

88
permissions:
99
contents: write
@@ -15,7 +15,7 @@ jobs:
1515
release:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- name: Checkout master branch
18+
- name: Checkout main branch
1919
uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0
@@ -47,12 +47,3 @@ jobs:
4747
TWINE_USERNAME: __token__
4848
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
4949
run: twine upload dist/*
50-
51-
- name: Raise PR from master to main
52-
uses: peter-evans/create-pull-request@v5
53-
with:
54-
base: main
55-
head: master
56-
title: "Release PR: master -> main"
57-
body: "This PR merges the changes from the master branch into main after the release."
58-
branch: pr-master-to-main

CHANGELOG.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
11

22
# Changelog
33

4-
<<<<<<< HEAD
54
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6-
=======
7-
## v0.1.2 (2025-05-14)
8-
9-
### Bug Fixes
10-
11-
- Update readme
12-
([`abc4771`](https://github.com/mindfiredigital/python-fm-dapi-weaver/commit/abc4771319e1912b51fc02255f2936fcc8092ce9))
13-
14-
15-
## v0.1.1 (2025-05-14)
16-
>>>>>>> 94cabfa (0.1.2)
175

186
## [Unreleased]
197

@@ -62,4 +50,4 @@ This project is licensed under the [License Name] - see the [LICENSE.md](./licen
6250

6351
## Customization
6452

65-
You can customize this changelog to meet the specific needs and preferences of your project. Feel free to modify the structure, add more details, or change the formatting to better suit your project's versioning and documentation requirements.
53+
You can customize this changelog to meet the specific needs and preferences of your project. Feel free to modify the structure, add more details, or change the formatting to better suit your project's versioning and documentation requirements.

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A developer-friendly Python library for interacting with FileMaker Server via th
1313

1414
## Features
1515

16-
- **Authentication**: Use **Basic Auth** for secure sign-in/sign-out and automatic session management
16+
- **Authentication**: Use **Basic Auth** for secure sign-in/sign-out and automatic session managements
1717
- **CRUD Operations**: Perform **Create**, **Read**, **Update**, and **Delete** on FileMaker records.
1818
- **File Uploads**: Upload files to FileMaker container fields using **multipart/form-data**.
1919
- **Error Handling**: Includes robust error handling for API requests and responses.

0 commit comments

Comments
 (0)