Skip to content

Commit 622aa94

Browse files
Merge branch 'main' into cbmc-v6
2 parents 0df0867 + efe1b51 commit 622aa94

File tree

53 files changed

+84
-54
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+84
-54
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
tag-commit:
4646
if: ${{ ( github.event.inputs.delete_existing_tag_release == 'true' && success() ) || ( github.event.inputs.delete_existing_tag_release == 'false' && always() ) }}
4747
needs: clean-existing-tag-and-release
48-
name: Tag commit
48+
name: Generate SBOM and tag commit
4949
runs-on: ubuntu-latest
5050
steps:
5151
- name: Checkout code
@@ -54,7 +54,20 @@ jobs:
5454
ref: ${{ github.event.inputs.commit_id }}
5555
- name: Configure git identity
5656
run: |
57-
git config --global user.name "Release Workflow"
57+
git config --global user.name ${{ github.actor }}
58+
git config --global user.email ${{ github.actor }}@users.noreply.github.com
59+
- name: create a new branch that references commit id
60+
run: git checkout -b ${{ github.event.inputs.version_number }} ${{ github.event.inputs.commit_id }}
61+
- name: Generate SBOM
62+
uses: FreeRTOS/CI-CD-Github-Actions/sbom-generator@main
63+
with:
64+
repo_path: ./
65+
source_path: ./source
66+
- name: commit SBOM file
67+
run: |
68+
git add .
69+
git commit -m 'Update SBOM'
70+
git push -u origin ${{ github.event.inputs.version_number }}
5871
- name: Tag Commit and Push to remote
5972
run: |
6073
git tag ${{ github.event.inputs.version_number }} -a -m "coreMQTT-Agent Library ${{ github.event.inputs.version_number }}"

CHANGELOG.md

Lines changed: 15 additions & 0 deletions

docs/doxygen/config.doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = "coreMQTT Agent"
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = v1.2.0
51+
PROJECT_NUMBER = v1.3.0+
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewer a

manifest.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
name : "coreMQTT Agent"
2-
version: "v1.2.0"
2+
version: "v1.3.0+"
33
description: |
44
"Agent for thread-safe use of coreMQTT.\n"
55
license: "MIT"
66
dependencies:
77
- name : "coreMQTT"
88
version: "v2.3.1"
9+
license: "MIT"
910
repository:
1011
type: "git"
1112
url: "https://github.com/FreeRTOS/coreMQTT/"
1213
path: source/dependency/coreMQTT
1314

1415
- name: "CMock"
15-
version: "3b443e5"
16+
version: "v2.5.3"
17+
license: "MIT"
1618
repository:
1719
type: "git"
1820
url: " https://github.com/ThrowTheSwitch/CMock.git"

source/core_mqtt_agent.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreMQTT Agent v1.2.0
2+
* coreMQTT Agent <DEVELOPMENT BRANCH>
33
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

source/core_mqtt_agent_command_functions.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreMQTT Agent v1.2.0
2+
* coreMQTT Agent <DEVELOPMENT BRANCH>
33
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

source/include/core_mqtt_agent.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreMQTT Agent v1.2.0
2+
* coreMQTT Agent <DEVELOPMENT BRANCH>
33
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

source/include/core_mqtt_agent_command_functions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreMQTT Agent v1.2.0
2+
* coreMQTT Agent <DEVELOPMENT BRANCH>
33
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

source/include/core_mqtt_agent_config_defaults.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreMQTT Agent v1.2.0
2+
* coreMQTT Agent <DEVELOPMENT BRANCH>
33
* Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

source/include/core_mqtt_agent_default_logging.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreMQTT-Agent v1.2.0
2+
* coreMQTT Agent <DEVELOPMENT BRANCH>
33
* Copyright (C) 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

0 commit comments

Comments
 (0)