Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Feb 8, 2025
1 parent d2d3e22 commit 55077bd
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 9 deletions.
1 change: 0 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ indent_style = tab
[*.{f,f.txt}]
indent_style = space
indent_size = 2
insert_final_newline = false

# Set properties for shell files:
[*.{sh,sh.txt}]
Expand Down
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,27 @@
<section class="release" id="unreleased">

## Unreleased (2024-12-24)
## Unreleased (2025-02-08)

<section class="issues">

### Closed Issues

This release closes the following issue:

[#5105](https://github.com/stdlib-js/stdlib/issues/5105)

</section>

<!-- /.issues -->

<section class="commits">

### Commits

<details>

- [`f6682eb`](https://github.com/stdlib-js/stdlib/commit/f6682ebd521481cf1c77c3cee2b279b8c19dc264) - **chore:** fix C linting errors in `math/base/ops/imuldw` [(#5107)](https://github.com/stdlib-js/stdlib/pull/5107) _(by Aayush Khanna)_
- [`4a70790`](https://github.com/stdlib-js/stdlib/commit/4a707903dfef7c2b56216000165706497d19a251) - **style:** add missing spaces _(by Philipp Burckhardt)_
- [`90e96d0`](https://github.com/stdlib-js/stdlib/commit/90e96d01b7a32ec3b71caf3e5f57528338199a8f) - **chore:** minor clean-up _(by Philipp Burckhardt)_
- [`b89c97c`](https://github.com/stdlib-js/stdlib/commit/b89c97ce0b812ff0b2aab16b4d77969d44fe3e8c) - **docs:** resolve lint errors in TS declaration files _(by Philipp Burckhardt)_
Expand All @@ -26,8 +39,9 @@

### Contributors

A total of 1 person contributed to this release. Thank you to this contributor:
A total of 2 people contributed to this release. Thank you to the following contributors:

- Aayush Khanna
- Philipp Burckhardt

</section>
Expand Down
7 changes: 6 additions & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ Daniel Killenberger <[email protected]>
Daniel Yu <[email protected]>
Debashis Maharana <[email protected]>
Desh Deepak Kant <[email protected]>
Dev Goel <[email protected]>
Dhruv Arvind Singh <[email protected]>
Divyansh Seth <[email protected]>
Dominic Lim <[email protected]>
Dominik Moritz <[email protected]>
Expand All @@ -49,6 +51,7 @@ Joey Reed <[email protected]>
Jordan Gallivan <[email protected]>
Joris Labie <[email protected]>
Justin Dennison <[email protected]>
Karan Anand <[email protected]>
Karthik Prakash <[email protected]>
Kohantika Nath <[email protected]>
Krishnendu Das <[email protected]>
Expand All @@ -60,6 +63,7 @@ Marcus Fantham <[email protected]>
Matt Cochrane <[email protected]>
Mihir Pandit <[email protected]>
Milan Raj <[email protected]>
Mohammad Bin Aftab <[email protected]>
Mohammad Kaif <[email protected]>
Momtchil Momtchev <[email protected]>
Muhammad Haris <[email protected]>
Expand Down Expand Up @@ -117,10 +121,11 @@ UtkershBasnet <[email protected]>
Vaibhav Patel <[email protected]>
Varad Gupta <[email protected]>
Vinit Pandit <[email protected]>
Vivek maurya <[email protected].com>
Vivek Maurya <vm8118134@gmail.com>
Xiaochuan Ye <[email protected]>
Yaswanth Kosuru <[email protected]>
Yernar Yergaziyev <[email protected]>
olenkabilonizhka <[email protected]>
pranav-1720 <[email protected]>
rainn <[email protected]>
rei2hu <[email protected]>
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Copyright (c) 2016-2024 The Stdlib Authors.
Copyright (c) 2016-2025 The Stdlib Authors.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ See [LICENSE][stdlib-license].

## Copyright

Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].

</section>

Expand Down
6 changes: 3 additions & 3 deletions test/fixtures/c/runner.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ void rand_array_ui32( unsigned int *out, const unsigned int len, const unsigned
* @param x input array
* @param len array length
*/
void ui32_to_f64( double *out, unsigned int *x, unsigned int len ) {
void ui32_to_f64( double *out, unsigned const int *x, unsigned int len ) {
unsigned int i;

for ( i = 0; i < len; i++ ) {
Expand All @@ -155,7 +155,7 @@ void ui32_to_f64( double *out, unsigned int *x, unsigned int len ) {
* @param x input array
* @param len array length
*/
void f64_to_ui32( unsigned int *out, double *x, unsigned int len ) {
void f64_to_ui32( unsigned int *out, const double *x, unsigned int len ) {
unsigned int i;

for ( i = 0; i < len; i++ ) {
Expand Down Expand Up @@ -334,7 +334,7 @@ void muldws1( int *w, const int u, const int v ) {
* @param len number of values in the domain
* @param name output filename
*/
void generate( unsigned int *a, unsigned int *b, const unsigned int len, const char *name ) {
void generate( unsigned const int *a, unsigned const int *b, const unsigned int len, const char *name ) {
unsigned int i;
unsigned int *y;
FILE *f;
Expand Down

0 comments on commit 55077bd

Please sign in to comment.