Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalCoinDev authored Jan 24, 2024
2 parents 20debda + aba8ab5 commit 21db3ef
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 19 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [ master ]
tags: [ "*" ]
paths-ignore: [ "README.md", "history.md", "release-notes.md" ]
paths-ignore: [ "README.md", "CHANGELOG.md", "release-notes.md" ]

pull_request:
branches: [ master ]
Expand All @@ -22,12 +22,12 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: false

- name: Install Lazarus
uses: gcarreno/setup-lazarus@v3.2
uses: gcarreno/setup-lazarus@v3
with:
with-cache: false
lazarus-version: ${{ matrix.lazarus-versions }}
Expand All @@ -48,7 +48,7 @@ jobs:

- name: Upload binary (Windows)
if: ${{ (matrix.operating-system == 'windows-latest') && (matrix.lazarus-versions == 'stable') }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: PascalCoinWindows
path: |
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Upload binary (Ubuntu)
if: ${{ (matrix.operating-system == 'ubuntu-latest') && (matrix.lazarus-versions == 'stable') }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: PascalCoinLinux
path: |
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Upload binary (macOS)
if: ${{ (matrix.operating-system == 'macos-latest') && (matrix.lazarus-versions == 'stable') }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: PascalCoinMacOS
path: |
Expand All @@ -85,14 +85,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set output
id: vars
run: echo "tag=${GITHUB_REF#refs/*/}" >> ${GITHUB_OUTPUT}

- name: Download the Release binary
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3

- name: List files
run: |
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016-2022 Pascal Cryptocurrency developers based on original Albert Molina source code
Copyright (c) 2016-2023 Pascal Cryptocurrency developers based on original Albert Molina source code

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 2 additions & 8 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,2 @@
# PascalCoin v5.7.1

- Fix cls function TAccountComp.EqualOperationBlocks
- Create UAbstractMemBlockchainStorage.pas
- Enable to use indexed data on Blockchain storage
- Added OnFLushedCache event on AbstractMem library
- Added OnFLushedCache event log
- Memory Improvements
# PascalCoin v5.7.3
- WIP
2 changes: 1 addition & 1 deletion src/gui-classic/UFRMAbout.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ object FRMAbout: TFRMAbout
BorderStyle = bsNone
Ctl3D = False
Lines.Strings = (
'Copyright (c) 2016 - 2022 PascalCoin developers'
'Copyright (c) 2016 - 2023 PascalCoin developers'
'Based on Albert Molina original source code'
''

Expand Down
2 changes: 1 addition & 1 deletion src/gui-classic/UFRMAbout.lfm
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ object FRMAbout: TFRMAbout
Width = 478
BorderStyle = bsNone
Lines.Strings = (
'Copyright (c) 2016 - 2022 PascalCoin developers'
'Copyright (c) 2016 - 2023 PascalCoin developers'
'Based on Albert Molina original source code'
''
'Pascal (aka Pascal Coin) is P2P cryptocurrency without the need for historical operations. This software comprises a node within the Pascal network.'
Expand Down

0 comments on commit 21db3ef

Please sign in to comment.