-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 3.0.0 #110
base: master
Are you sure you want to change the base?
Release 3.0.0 #110
Conversation
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
The correct target to build documentation is now passed to the action. Signed-off-by: Alessandro Pellegrini <a.pellegrini@ing.uniroma2.it>
Signed-off-by: Alessandro Pellegrini <a.pellegrini@ing.uniroma2.it> # Conflicts: # .github/workflows/doc_coverage.yml
Differentiate documentation target name across projects
Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
Criticism and suggestions are always welcome! Signed-off-by: Andrea Piccione <piccione@diag.uniroma1.it>
A leftover include was not corrected. Signed-off-by: Alessandro Pellegrini <a.pellegrini@ing.uniroma2.it>
Reproducible builds, thread binding improvement, tiebreaking bugfix
Remove the testing framework from the core
The work we are doing on the compiler is no longer meant to be the only preferred way to use the core. We explicitly acknowledge this in the README. Signed-off-by: Alessandro Pellegrini <a.pellegrini@ing.uniroma2.it>
We consider the core as a stand-alone library
This commit is in preparation of the 3.0.0 release. Signed-off-by: Alessandro Pellegrini <a.pellegrini@ing.uniroma2.it>
Documentation coverage is 82.5% 👍
|
1 similar comment
Documentation coverage is 82.5% 👍
|
dcd35f5
to
a6cc2ab
Compare
Documentation coverage is 82.5% 👍
|
a6cc2ab
to
7f25ff5
Compare
Documentation coverage is 82.5% 👍
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #110 +/- ##
==========================================
- Coverage 88.38% 84.97% -3.41%
==========================================
Files 46 38 -8
Lines 2152 1551 -601
Branches 47 50 +3
==========================================
- Hits 1902 1318 -584
+ Misses 229 214 -15
+ Partials 21 19 -2 ☔ View full report in Codecov by Sentry. |
Many actions were using outdated dependencies, which I am trying to update with this commit. Signed-off-by: Alessandro Pellegrini <a.pellegrini@ing.uniroma2.it>
7f25ff5
to
bc2d66d
Compare
Documentation coverage is 82.5% 👍
|
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
|
||
describe_str = check_output(['git', 'describe']).decode() | ||
branch_name = check_output(['git', 'branch', '--show-current']).decode().strip() | ||
DESCRIBE_STR = check_output(['/usr/bin/git', 'describe'], shell=False).decode() |
Check warning
Code scanning / Bandit (reported by Codacy)
subprocess call - check for execution of untrusted input. Warning
describe_str = check_output(['git', 'describe']).decode() | ||
branch_name = check_output(['git', 'branch', '--show-current']).decode().strip() | ||
DESCRIBE_STR = check_output(['/usr/bin/git', 'describe'], shell=False).decode() | ||
BRANCH_NAME = check_output(['/usr/bin/git', 'branch', '--show-current'], shell=False).decode().strip() |
Check warning
Code scanning / Bandit (reported by Codacy)
subprocess call - check for execution of untrusted input. Warning
Preparing the 3.0.0 release, finally!